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