src/auth/dto/token-response.dto.ts
Properties |
|
access_token |
Type : string
|
Defined in src/auth/dto/token-response.dto.ts:2
|
expires_in |
Type : number
|
Defined in src/auth/dto/token-response.dto.ts:5
|
Optional refresh_token |
Type : string
|
Defined in src/auth/dto/token-response.dto.ts:3
|
token_type |
Defined in src/auth/dto/token-response.dto.ts:4
|
export class TokenResponse {
access_token: string;
refresh_token?: string;
token_type: "Bearer";
expires_in: number;
}