Class SessionNavigateResponse.Data
-
- All Implemented Interfaces:
public final class SessionNavigateResponse.Data
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSessionNavigateResponse.Data.BuilderA builder for Data.
-
Method Summary
Modifier and Type Method Description final JsonValue_result()Navigation response (Playwright Response object or null)This 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 SessionNavigateResponse.Data.BuildertoBuilder()final SessionNavigateResponse.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 SessionNavigateResponse.Data.Builderbuilder()Returns a mutable builder for constructing an instance of Data. -
-
Method Detail
-
_result
final JsonValue _result()
Navigation response (Playwright Response object or null)
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 SessionNavigateResponse.Data.Builder toBuilder()
-
validate
final SessionNavigateResponse.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 SessionNavigateResponse.Data.Builder builder()
Returns a mutable builder for constructing an instance of Data.
The following fields are required:
.result()
-
-
-
-