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