Class OrganizationMemberUpdateParams.Body
-
- All Implemented Interfaces:
public final class OrganizationMemberUpdateParams.Body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classOrganizationMemberUpdateParams.Body.BuilderA builder for Body.
-
Method Summary
-
-
Method Detail
-
inviteUsers
final Optional<OrganizationMemberUpdateParams.InviteUsers> inviteUsers()
Users to invite to the organization
-
orgId
final Optional<String> orgId()
For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, or in case you want to explicitly assert the organization you are modifying, you may specify the id of the organization.
-
orgName
final Optional<String> orgName()
For nearly all users, this parameter should be unnecessary. But in the rare case that your API key belongs to multiple organizations, or in case you want to explicitly assert the organization you are modifying, you may specify the name of the organization.
-
removeUsers
final Optional<OrganizationMemberUpdateParams.RemoveUsers> removeUsers()
Users to remove from the organization
-
_inviteUsers
final JsonField<OrganizationMemberUpdateParams.InviteUsers> _inviteUsers()
Returns the raw JSON value of inviteUsers.
Unlike inviteUsers, this method doesn't throw if the JSON field has an unexpected type.
-
_orgId
final JsonField<String> _orgId()
Returns the raw JSON value of orgId.
Unlike orgId, this method doesn't throw if the JSON field has an unexpected type.
-
_orgName
final JsonField<String> _orgName()
Returns the raw JSON value of orgName.
Unlike orgName, this method doesn't throw if the JSON field has an unexpected type.
-
_removeUsers
final JsonField<OrganizationMemberUpdateParams.RemoveUsers> _removeUsers()
Returns the raw JSON value of removeUsers.
Unlike removeUsers, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final OrganizationMemberUpdateParams.Body.Builder toBuilder()
-
validate
final OrganizationMemberUpdateParams.Body validate()
-
builder
final static OrganizationMemberUpdateParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
-
-
-
-