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