Dropbox · Schema

OAuthTokenResponse

Documents

Properties

Name Type Description
access_token string
token_type string
refresh_token string
expires_in integer _t__OAuthTokenResponse::EXPIRES_IN
state string
View JSON Schema on GitHub

JSON Schema

dropbox-oauthtokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAuthTokenResponse",
  "title": "OAuthTokenResponse",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "type": "string"
    },
    "refresh_token": {
      "type": "string"
    },
    "expires_in": {
      "description": "_t__OAuthTokenResponse::EXPIRES_IN",
      "type": "integer"
    },
    "state": {
      "type": "string",
      "nullable": true
    }
  },
  "type": "object",
  "x-internal": true
}