Interface ClientCredentialsTokenResponse

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

Hierarchy

Properties

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