Class SessionActResponse.Data.Result
-
- All Implemented Interfaces:
public final class SessionActResponse.Data.Result
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSessionActResponse.Data.Result.BuilderA builder for Result.
public final classSessionActResponse.Data.Result.ActionAction object returned by observe and used by act
-
Method Summary
Modifier and Type Method Description final StringactionDescription()Description of the action that was performed final List<SessionActResponse.Data.Result.Action>actions()List of actions that were executed final Stringmessage()Human-readable result message final Booleansuccess()Whether the action completed successfully final JsonField<String>_actionDescription()Returns the raw JSON value of actionDescription. final JsonField<List<SessionActResponse.Data.Result.Action>>_actions()Returns the raw JSON value of actions. final JsonField<String>_message()Returns the raw JSON value of message. final JsonField<Boolean>_success()Returns the raw JSON value of success. final Map<String, JsonValue>_additionalProperties()final SessionActResponse.Data.Result.BuildertoBuilder()final SessionActResponse.Data.Resultvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SessionActResponse.Data.Result.Builderbuilder()Returns a mutable builder for constructing an instance of Result. -
-
Method Detail
-
actionDescription
final String actionDescription()
Description of the action that was performed
-
actions
final List<SessionActResponse.Data.Result.Action> actions()
List of actions that were executed
-
_actionDescription
final JsonField<String> _actionDescription()
Returns the raw JSON value of actionDescription.
Unlike actionDescription, this method doesn't throw if the JSON field has an unexpected type.
-
_actions
final JsonField<List<SessionActResponse.Data.Result.Action>> _actions()
Returns the raw JSON value of actions.
Unlike actions, this method doesn't throw if the JSON field has an unexpected type.
-
_message
final JsonField<String> _message()
Returns the raw JSON value of message.
Unlike message, this method doesn't throw if the JSON field has an unexpected type.
-
_success
final JsonField<Boolean> _success()
Returns the raw JSON value of success.
Unlike success, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SessionActResponse.Data.Result.Builder toBuilder()
-
validate
final SessionActResponse.Data.Result validate()
-
builder
final static SessionActResponse.Data.Result.Builder builder()
Returns a mutable builder for constructing an instance of Result.
The following fields are required:
.actionDescription() .actions() .message() .success()
-
-
-
-