Package com.lithic.api.models
Class CardProgramListPageResponse.Builder
-
- All Implemented Interfaces:
public final class CardProgramListPageResponse.BuilderA builder for CardProgramListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final CardProgramListPageResponse.Builder data(List<CardProgram> data)
-
data
final CardProgramListPageResponse.Builder data(JsonField<List<CardProgram>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<CardProgram>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final CardProgramListPageResponse.Builder addData(CardProgram data)
Adds a single CardProgram to Builder.data.
-
hasMore
final CardProgramListPageResponse.Builder hasMore(Boolean hasMore)
More data exists.
-
hasMore
final CardProgramListPageResponse.Builder hasMore(JsonField<Boolean> hasMore)
Sets Builder.hasMore to an arbitrary JSON value.
You should usually call Builder.hasMore with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final CardProgramListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final CardProgramListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final CardProgramListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final CardProgramListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final CardProgramListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final CardProgramListPageResponse build()
Returns an immutable instance of CardProgramListPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.data() .hasMore()
-
-
-
-