Class ListRetrieveResponse.Result.Builder
-
- All Implemented Interfaces:
public final class ListRetrieveResponse.Result.BuilderA builder for Result.
-
-
Method Summary
-
-
Method Detail
-
id
final ListRetrieveResponse.Result.Builder id(String id)
-
id
final ListRetrieveResponse.Result.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.
-
created
final ListRetrieveResponse.Result.Builder created(String created)
The date/time of when the list was created. Represented as a string in ISO format.
-
created
final ListRetrieveResponse.Result.Builder created(JsonField<String> created)
Sets Builder.created to an arbitrary JSON value.
You should usually call Builder.created 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 ListRetrieveResponse.Result.Builder name(String name)
List name
-
name
final ListRetrieveResponse.Result.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.
-
updated
final ListRetrieveResponse.Result.Builder updated(String updated)
The date/time of when the list was updated. Represented as a string in ISO format.
-
updated
final ListRetrieveResponse.Result.Builder updated(JsonField<String> updated)
Sets Builder.updated to an arbitrary JSON value.
You should usually call Builder.updated with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
preferences
final ListRetrieveResponse.Result.Builder preferences(RecipientPreferences preferences)
-
preferences
final ListRetrieveResponse.Result.Builder preferences(Optional<RecipientPreferences> preferences)
Alias for calling Builder.preferences with
preferences.orElse(null).
-
preferences
final ListRetrieveResponse.Result.Builder preferences(JsonField<RecipientPreferences> preferences)
Sets Builder.preferences to an arbitrary JSON value.
You should usually call Builder.preferences with a well-typed RecipientPreferences value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ListRetrieveResponse.Result.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ListRetrieveResponse.Result.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ListRetrieveResponse.Result.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ListRetrieveResponse.Result.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ListRetrieveResponse.Result.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ListRetrieveResponse.Result build()
Returns an immutable instance of Result.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .created() .name() .updated()
-
-
-
-