Class CertificateListPageResponse.Builder
-
- All Implemented Interfaces:
public final class CertificateListPageResponse.BuilderA builder for CertificateListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final CertificateListPageResponse.Builder data(List<CertificateListResponse> data)
-
data
final CertificateListPageResponse.Builder data(JsonField<List<CertificateListResponse>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<CertificateListResponse>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final CertificateListPageResponse.Builder addData(CertificateListResponse data)
Adds a single CertificateListResponse to Builder.data.
-
firstId
final CertificateListPageResponse.Builder firstId(String firstId)
-
firstId
final CertificateListPageResponse.Builder firstId(Optional<String> firstId)
Alias for calling Builder.firstId with
firstId.orElse(null).
-
firstId
final CertificateListPageResponse.Builder firstId(JsonField<String> firstId)
Sets Builder.firstId to an arbitrary JSON value.
You should usually call Builder.firstId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
hasMore
final CertificateListPageResponse.Builder hasMore(Boolean hasMore)
-
hasMore
final CertificateListPageResponse.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.
-
lastId
final CertificateListPageResponse.Builder lastId(String lastId)
-
lastId
final CertificateListPageResponse.Builder lastId(Optional<String> lastId)
Alias for calling Builder.lastId with
lastId.orElse(null).
-
lastId
final CertificateListPageResponse.Builder lastId(JsonField<String> lastId)
Sets Builder.lastId to an arbitrary JSON value.
You should usually call Builder.lastId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
object_
final CertificateListPageResponse.Builder object_(JsonValue object_)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("list")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final CertificateListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final CertificateListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final CertificateListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final CertificateListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final CertificateListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final CertificateListPageResponse build()
Returns an immutable instance of CertificateListPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.data() .firstId() .hasMore() .lastId()
-
-
-
-