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