Interface IRefreshTokenResponse

Represents a response to the CSAPI /refresh endpoint.

interface IRefreshTokenResponse {
    access_token: string;
    expires_in_ms: number;
    refresh_token: string;
}

Properties

access_token: string
expires_in_ms: number
refresh_token: string