Class GroupUpdateResponse.Builder
-
- All Implemented Interfaces:
public final class GroupUpdateResponse.BuilderA builder for GroupUpdateResponse.
-
-
Method Summary
-
-
Method Detail
-
id
final GroupUpdateResponse.Builder id(String id)
Identifier for the group.
-
id
final GroupUpdateResponse.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.
-
createdAt
final GroupUpdateResponse.Builder createdAt(Long createdAt)
Unix timestamp (in seconds) when the group was created.
-
createdAt
final GroupUpdateResponse.Builder createdAt(JsonField<Long> createdAt)
Sets Builder.createdAt to an arbitrary JSON value.
You should usually call Builder.createdAt with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
isScimManaged
final GroupUpdateResponse.Builder isScimManaged(Boolean isScimManaged)
Whether the group is managed through SCIM and controlled by your identity provider.
-
isScimManaged
final GroupUpdateResponse.Builder isScimManaged(JsonField<Boolean> isScimManaged)
Sets Builder.isScimManaged to an arbitrary JSON value.
You should usually call Builder.isScimManaged with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final GroupUpdateResponse.Builder name(String name)
Updated display name for the group.
-
name
final GroupUpdateResponse.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 GroupUpdateResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final GroupUpdateResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final GroupUpdateResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final GroupUpdateResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final GroupUpdateResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final GroupUpdateResponse build()
Returns an immutable instance of GroupUpdateResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .createdAt() .isScimManaged() .name()
-
-
-
-