Class Group
-
- All Implemented Interfaces:
public final class GroupDetails about an organization group.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classGroup.BuilderA builder for Group.
public final classGroup.GroupTypeThe type of the group.
-
Method Summary
Modifier and Type Method Description final Stringid()Identifier for the group. final LongcreatedAt()Unix timestamp (in seconds) when the group was created. final Group.GroupTypegroupType()The type of the group. final BooleanisScimManaged()Whether the group is managed through SCIM and controlled by your identity provider. final Stringname()Display name of the group. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<Long>_createdAt()Returns the raw JSON value of createdAt. final JsonField<Group.GroupType>_groupType()Returns the raw JSON value of groupType. final JsonField<Boolean>_isScimManaged()Returns the raw JSON value of isScimManaged. final JsonField<String>_name()Returns the raw JSON value of name. final Map<String, JsonValue>_additionalProperties()final Group.BuildertoBuilder()final Groupvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Group.Builderbuilder()Returns a mutable builder for constructing an instance of Group. -
-
Method Detail
-
groupType
final Group.GroupType groupType()
The type of the group.
-
isScimManaged
final Boolean isScimManaged()
Whether the group is managed through SCIM and controlled by your identity provider.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_createdAt
final JsonField<Long> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_groupType
final JsonField<Group.GroupType> _groupType()
Returns the raw JSON value of groupType.
Unlike groupType, this method doesn't throw if the JSON field has an unexpected type.
-
_isScimManaged
final JsonField<Boolean> _isScimManaged()
Returns the raw JSON value of isScimManaged.
Unlike isScimManaged, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Group.Builder toBuilder()
-
validate
final Group validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static Group.Builder builder()
Returns a mutable builder for constructing an instance of Group.
The following fields are required:
.id() .createdAt() .groupType() .isScimManaged() .name()
-
-
-
-