Class InviteListResponse.Item.Builder
-
- All Implemented Interfaces:
public final class InviteListResponse.Item.BuilderA builder for Item.
-
-
Method Summary
-
-
Method Detail
-
id
final InviteListResponse.Item.Builder id(String id)
The invite id.
-
id
final InviteListResponse.Item.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.
-
creator
final InviteListResponse.Item.Builder creator(InviteListResponse.Item.Creator creator)
-
creator
final InviteListResponse.Item.Builder creator(JsonField<InviteListResponse.Item.Creator> creator)
Sets Builder.creator to an arbitrary JSON value.
You should usually call Builder.creator with a well-typed Creator value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateCreated
final InviteListResponse.Item.Builder dateCreated(OffsetDateTime dateCreated)
The invite creation date.
-
dateCreated
final InviteListResponse.Item.Builder dateCreated(JsonField<OffsetDateTime> dateCreated)
Sets Builder.dateCreated to an arbitrary JSON value.
You should usually call Builder.dateCreated with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
email
final InviteListResponse.Item.Builder email(String email)
The invite email.
-
email
final InviteListResponse.Item.Builder email(JsonField<String> email)
Sets Builder.email to an arbitrary JSON value.
You should usually call Builder.email with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
role
final InviteListResponse.Item.Builder role(InviteListResponse.Item.Role role)
The invite role.
-
role
final InviteListResponse.Item.Builder role(JsonField<InviteListResponse.Item.Role> role)
Sets Builder.role to an arbitrary JSON value.
You should usually call Builder.role with a well-typed Role value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
status
final InviteListResponse.Item.Builder status(InviteListResponse.Item.Status status)
The invite status.
-
status
final InviteListResponse.Item.Builder status(JsonField<InviteListResponse.Item.Status> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed Status value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
workspace
final InviteListResponse.Item.Builder workspace(InviteListResponse.Item.Workspace workspace)
-
workspace
final InviteListResponse.Item.Builder workspace(JsonField<InviteListResponse.Item.Workspace> workspace)
Sets Builder.workspace to an arbitrary JSON value.
You should usually call Builder.workspace with a well-typed Workspace value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final InviteListResponse.Item.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final InviteListResponse.Item.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final InviteListResponse.Item.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final InviteListResponse.Item.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final InviteListResponse.Item.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final InviteListResponse.Item build()
Returns an immutable instance of Item.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .creator() .dateCreated() .email() .role() .status() .workspace()
-
-
-
-