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