Class ProjectUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class ProjectUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
externalKeyId
final ProjectUpdateParams.Body.Builder externalKeyId(String externalKeyId)
External key ID to associate with the project.
-
externalKeyId
final ProjectUpdateParams.Body.Builder externalKeyId(Optional<String> externalKeyId)
Alias for calling Builder.externalKeyId with
externalKeyId.orElse(null).
-
externalKeyId
final ProjectUpdateParams.Body.Builder externalKeyId(JsonField<String> externalKeyId)
Sets Builder.externalKeyId to an arbitrary JSON value.
You should usually call Builder.externalKeyId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
geography
final ProjectUpdateParams.Body.Builder geography(String geography)
Geography for the project.
-
geography
final ProjectUpdateParams.Body.Builder geography(Optional<String> geography)
Alias for calling Builder.geography with
geography.orElse(null).
-
geography
final ProjectUpdateParams.Body.Builder geography(JsonField<String> geography)
Sets Builder.geography to an arbitrary JSON value.
You should usually call Builder.geography 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 ProjectUpdateParams.Body.Builder name(String name)
The updated name of the project, this name appears in reports.
-
name
final ProjectUpdateParams.Body.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final ProjectUpdateParams.Body.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.
-
additionalProperties
final ProjectUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ProjectUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ProjectUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ProjectUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ProjectUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ProjectUpdateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-