Interface RawClientCredentialsTokenResponse

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

Hierarchy

Properties

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