interface DeviceTokenResponse {
    id_token: string;
    access_token: string;
    refresh_token?: string;
    token_type: string;
    scopes: string[];
}

Properties

id_token: string
access_token: string
refresh_token?: string
token_type: string
scopes: string[]