Class Group.Builder
-
- All Implemented Interfaces:
public final class Group.BuilderA builder for Group.
-
-
Method Summary
Modifier and Type Method Description final Group.Builderid(String id)Identifier for the group. final Group.Builderid(JsonField<String> id)Sets Builder.id to an arbitrary JSON value. final Group.BuildercreatedAt(Long createdAt)Unix timestamp (in seconds) when the group was created. final Group.BuildercreatedAt(JsonField<Long> createdAt)Sets Builder.createdAt to an arbitrary JSON value. final Group.BuildergroupType(Group.GroupType groupType)The type of the group. final Group.BuildergroupType(JsonField<Group.GroupType> groupType)Sets Builder.groupType to an arbitrary JSON value. final Group.BuilderisScimManaged(Boolean isScimManaged)Whether the group is managed through SCIM and controlled by your identity provider. final Group.BuilderisScimManaged(JsonField<Boolean> isScimManaged)Sets Builder.isScimManaged to an arbitrary JSON value. final Group.Buildername(String name)Display name of the group. final Group.Buildername(JsonField<String> name)Sets Builder.name to an arbitrary JSON value. final Group.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final Group.BuilderputAdditionalProperty(String key, JsonValue value)final Group.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final Group.BuilderremoveAdditionalProperty(String key)final Group.BuilderremoveAllAdditionalProperties(Set<String> keys)final Groupbuild()Returns an immutable instance of Group. -
-
Method Detail
-
id
final Group.Builder id(String id)
Identifier for the group.
-
id
final 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 Group.Builder createdAt(Long createdAt)
Unix timestamp (in seconds) when the group was created.
-
createdAt
final 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.
-
groupType
final Group.Builder groupType(Group.GroupType groupType)
The type of the group.
-
groupType
final Group.Builder groupType(JsonField<Group.GroupType> groupType)
Sets Builder.groupType to an arbitrary JSON value.
You should usually call Builder.groupType with a well-typed GroupType value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
isScimManaged
final Group.Builder isScimManaged(Boolean isScimManaged)
Whether the group is managed through SCIM and controlled by your identity provider.
-
isScimManaged
final Group.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 Group.Builder name(String name)
Display name of the group.
-
name
final 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.
-
additionalProperties
final Group.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Group.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Group.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Group.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Group.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-