Class ProjectTagReplaceParams.Body.Builder
-
- All Implemented Interfaces:
public final class ProjectTagReplaceParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
name
final ProjectTagReplaceParams.Body.Builder name(String name)
Name of the project tag
-
name
final ProjectTagReplaceParams.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.
-
projectId
final ProjectTagReplaceParams.Body.Builder projectId(String projectId)
Unique identifier for the project that the project tag belongs under
-
projectId
final ProjectTagReplaceParams.Body.Builder projectId(JsonField<String> projectId)
Sets Builder.projectId to an arbitrary JSON value.
You should usually call Builder.projectId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
color
final ProjectTagReplaceParams.Body.Builder color(String color)
Color of the tag for the UI
-
color
final ProjectTagReplaceParams.Body.Builder color(Optional<String> color)
Alias for calling Builder.color with
color.orElse(null).
-
color
final ProjectTagReplaceParams.Body.Builder color(JsonField<String> color)
Sets Builder.color to an arbitrary JSON value.
You should usually call Builder.color with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final ProjectTagReplaceParams.Body.Builder description(String description)
Textual description of the project tag
-
description
final ProjectTagReplaceParams.Body.Builder description(Optional<String> description)
Alias for calling Builder.description with
description.orElse(null).
-
description
final ProjectTagReplaceParams.Body.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description 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 ProjectTagReplaceParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ProjectTagReplaceParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ProjectTagReplaceParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ProjectTagReplaceParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ProjectTagReplaceParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ProjectTagReplaceParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.name() .projectId()
-
-
-
-