mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
10 lines
255 B
TypeScript
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;
|
|
}
|