/** 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; }