Class OrganizationGroupUser
-
- All Implemented Interfaces:
public final class OrganizationGroupUserRepresents an individual user returned when inspecting group membership.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classOrganizationGroupUser.BuilderA builder for OrganizationGroupUser.
-
Method Summary
Modifier and Type Method Description final Stringid()The identifier, which can be referenced in API endpoints final Optional<String>email()The email address of the user. final Stringname()The name of the user. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_email()Returns the raw JSON value of email. final JsonField<String>_name()Returns the raw JSON value of name. final Map<String, JsonValue>_additionalProperties()final OrganizationGroupUser.BuildertoBuilder()final OrganizationGroupUservalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static OrganizationGroupUser.Builderbuilder()Returns a mutable builder for constructing an instance of OrganizationGroupUser. -
-
Method Detail
-
_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.
-
_email
final JsonField<String> _email()
Returns the raw JSON value of email.
Unlike email, 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 OrganizationGroupUser.Builder toBuilder()
-
validate
final OrganizationGroupUser 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 OrganizationGroupUser.Builder builder()
Returns a mutable builder for constructing an instance of OrganizationGroupUser.
The following fields are required:
.id() .email() .name()
-
-
-
-