Interface ExchangeCodeResponse

interface ExchangeCodeResponse {
    accessToken: string;
    expiresIn: number;
    refreshToken: string;
    scopes: string[];
    tokenType: "Bearer";
    webhook: null | Webhook;
}

Properties

accessToken: string
expiresIn: number
refreshToken: string
scopes: string[]
tokenType: "Bearer"
webhook: null | Webhook