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 : string
|
Defined in src/auth/dto/token-response.dto.ts:4
|
token_type |
Defined in src/auth/dto/token-response.dto.ts:3
|
export class TokenResponse {
access_token: string;
token_type: 'Bearer';
expires_in: string;
}