Class V1DocketResponse.Pagination.Builder
-
- All Implemented Interfaces:
public final class V1DocketResponse.Pagination.BuilderA builder for Pagination.
-
-
Method Summary
-
-
Method Detail
-
limit
final V1DocketResponse.Pagination.Builder limit(Long limit)
-
limit
final V1DocketResponse.Pagination.Builder limit(JsonField<Long> limit)
Sets Builder.limit to an arbitrary JSON value.
You should usually call Builder.limit with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
offset
final V1DocketResponse.Pagination.Builder offset(Long offset)
-
offset
final V1DocketResponse.Pagination.Builder offset(JsonField<Long> offset)
Sets Builder.offset to an arbitrary JSON value.
You should usually call Builder.offset with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
returned
final V1DocketResponse.Pagination.Builder returned(Long returned)
-
returned
final V1DocketResponse.Pagination.Builder returned(JsonField<Long> returned)
Sets Builder.returned to an arbitrary JSON value.
You should usually call Builder.returned with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final V1DocketResponse.Pagination.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1DocketResponse.Pagination.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1DocketResponse.Pagination.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1DocketResponse.Pagination.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1DocketResponse.Pagination.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1DocketResponse.Pagination build()
Returns an immutable instance of Pagination.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-