Class SessionExtractResponse.Data
-
- All Implemented Interfaces:
public final class SessionExtractResponse.Data
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSessionExtractResponse.Data.BuilderA builder for Data.
-
Method Summary
Modifier and Type Method Description final JsonValue_result()Extracted data matching the requested schemaThis arbitrary value can be deserialized into a custom type using the convertmethod:MyClass myObject = data.result().convert(MyClass.class);final Optional<String>actionId()Action ID for tracking final JsonField<String>_actionId()Returns the raw JSON value of actionId. final Map<String, JsonValue>_additionalProperties()final SessionExtractResponse.Data.BuildertoBuilder()final SessionExtractResponse.Datavalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SessionExtractResponse.Data.Builderbuilder()Returns a mutable builder for constructing an instance of Data. -
-
Method Detail
-
_result
final JsonValue _result()
Extracted data matching the requested schema
This arbitrary value can be deserialized into a custom type using the
convertmethod:MyClass myObject = data.result().convert(MyClass.class);
-
_actionId
final JsonField<String> _actionId()
Returns the raw JSON value of actionId.
Unlike actionId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SessionExtractResponse.Data.Builder toBuilder()
-
validate
final SessionExtractResponse.Data validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static SessionExtractResponse.Data.Builder builder()
Returns a mutable builder for constructing an instance of Data.
The following fields are required:
.result()
-
-
-
-