Class GroupCreateParams.Body.Builder
-
- All Implemented Interfaces:
public final class GroupCreateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
groupId
final GroupCreateParams.Body.Builder groupId(String groupId)
Identifier of the group to add to the project.
-
groupId
final GroupCreateParams.Body.Builder groupId(JsonField<String> groupId)
Sets Builder.groupId to an arbitrary JSON value.
You should usually call Builder.groupId 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 GroupCreateParams.Body.Builder role(String role)
Identifier of the project role to grant to the group.
-
role
final GroupCreateParams.Body.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 GroupCreateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final GroupCreateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final GroupCreateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final GroupCreateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final GroupCreateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final GroupCreateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.groupId() .role()
-
-
-
-