TokenRefresh
Properties
| Property | Type | Required | Description |
|---|---|---|---|
access_token |
string | Yes | |
expires_in |
integer | Yes | |
refresh_token |
string | Yes |
View JSON Schema
{
"type": "object",
"required": [
"access_token",
"refresh_token",
"expires_in"
],
"properties": {
"access_token": {
"type": "string"
},
"expires_in": {
"type": "integer",
"format": "int64"
},
"refresh_token": {
"type": "string"
}
}
}