Class InviteListResponse.Item.Creator.Builder
-
- All Implemented Interfaces:
public final class InviteListResponse.Item.Creator.BuilderA builder for Creator.
-
-
Method Summary
-
-
Method Detail
-
id
final InviteListResponse.Item.Creator.Builder id(String id)
The invite creator id.
-
id
final InviteListResponse.Item.Creator.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.
-
name
final InviteListResponse.Item.Creator.Builder name(String name)
The invite creator name.
-
name
final InviteListResponse.Item.Creator.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final InviteListResponse.Item.Creator.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
username
final InviteListResponse.Item.Creator.Builder username(String username)
The invite creator username.
-
username
final InviteListResponse.Item.Creator.Builder username(Optional<String> username)
Alias for calling Builder.username with
username.orElse(null).
-
username
final InviteListResponse.Item.Creator.Builder username(JsonField<String> username)
Sets Builder.username to an arbitrary JSON value.
You should usually call Builder.username with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final InviteListResponse.Item.Creator.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final InviteListResponse.Item.Creator.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final InviteListResponse.Item.Creator.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final InviteListResponse.Item.Creator.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final InviteListResponse.Item.Creator.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final InviteListResponse.Item.Creator build()
Returns an immutable instance of Creator.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-