Interface RawExchangeCodeResponse

interface RawExchangeCodeResponse {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: "Bearer";
    webhook?: OAuthWebhook;
}

Properties

access_token: string
expires_in: number
refresh_token: string
scope: string
token_type: "Bearer"
webhook?: OAuthWebhook