Files
edr-platform/apps/edr-payment-api/src/modules/cbe-bill/dto/token-response.dto.ts
2026-07-31 07:50:10 +00:00

10 lines
255 B
TypeScript

/** Us → CBE, POST /cbe/oauth/token response (AAFDA spec §1.7). */
export class TokenResponseDto {
token_type!: string;
access_token!: string;
expires_in!: number;
scope!: string;
/** Unix seconds at issue time. */
consented_on!: number;
}