Class OrganizationUser.Projects.Data.Builder
-
- All Implemented Interfaces:
public final class OrganizationUser.Projects.Data.BuilderA builder for Data.
-
-
Method Summary
-
-
Method Detail
-
id
final OrganizationUser.Projects.Data.Builder id(String id)
-
id
final OrganizationUser.Projects.Data.Builder id(Optional<String> id)
Alias for calling Builder.id with
id.orElse(null).
-
id
final OrganizationUser.Projects.Data.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final OrganizationUser.Projects.Data.Builder name(String name)
-
name
final OrganizationUser.Projects.Data.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final OrganizationUser.Projects.Data.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
role
final OrganizationUser.Projects.Data.Builder role(String role)
-
role
final OrganizationUser.Projects.Data.Builder role(Optional<String> role)
Alias for calling Builder.role with
role.orElse(null).
-
role
final OrganizationUser.Projects.Data.Builder role(JsonField<String> role)
Sets Builder.role to an arbitrary JSON value.
You should usually call Builder.role with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final OrganizationUser.Projects.Data.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final OrganizationUser.Projects.Data.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final OrganizationUser.Projects.Data.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final OrganizationUser.Projects.Data.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final OrganizationUser.Projects.Data.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final OrganizationUser.Projects.Data build()
Returns an immutable instance of Data.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-