Class GroupUpdateResponse
-
- All Implemented Interfaces:
public final class GroupUpdateResponseResponse returned after updating a group.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classGroupUpdateResponse.BuilderA builder for GroupUpdateResponse.
-
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 BooleanisScimManaged()Whether the group is managed through SCIM and controlled by your identity provider. final Stringname()Updated display name for 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<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 GroupUpdateResponse.BuildertoBuilder()final GroupUpdateResponsevalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static GroupUpdateResponse.Builderbuilder()Returns a mutable builder for constructing an instance of GroupUpdateResponse. -
-
Method Detail
-
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.
-
_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 GroupUpdateResponse.Builder toBuilder()
-
validate
final GroupUpdateResponse 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 GroupUpdateResponse.Builder builder()
Returns a mutable builder for constructing an instance of GroupUpdateResponse.
The following fields are required:
.id() .createdAt() .isScimManaged() .name()
-
-
-
-