Type Alias TokenJSONResponse
TokenJSONResponse: {
access_token: string;
clientName?: string;
expires_in: number;
refresh_token?: string;
scope?: string;
token_type: "Bearer";
user_id?: number;
}
Type declaration
access_token: string
Optional
clientName?: string
expires_in: number
Optional
refresh_token?: string
Optional
scope?: string
token_type: "Bearer"
Optional
user_id?: number