HydrateSessionResponse¶
| Field | Type | Description |
|---|---|---|
| ignored | bool | Whether the hydration request is ignored because the session is already hydrated or is currently hydrating. |
| success | bool | Whether the hydration request is successful. |
| last_hydration_state | The last hydration state of the session. This is useful when the hydration request is ignored because the session is already hydrated or is currently hydrating. |
Example¶
JSON
{
"ignored": false,
"last_hydration_state": {
"created_at": "2024-01-15T09:30:00Z",
"expiration_time": "2024-01-15T09:30:00Z",
"finished_at": "2024-01-15T09:30:00Z",
"hydration_status": "HYDRATING",
"incremental": true,
"started_at": "2024-01-15T09:30:00Z"
},
"success": true
}