interface SessionKeyInfo {
    access_token: undefined | string;
    expires_in: undefined | number;
    token_type: undefined | string;
}

Properties

access_token: undefined | string
expires_in: undefined | number
token_type: undefined | string