src/issuer/authorize/dto/par-response.dto.ts
Properties |
expires_in |
Type : number
|
The expiration time for the request URI in seconds. |
request_uri |
Type : string
|
The request URI for the Pushed Authorization Request. |
export class ParResponseDto {
/**
* The request URI for the Pushed Authorization Request.
*/
request_uri: string;
/**
* The expiration time for the request URI in seconds.
*/
expires_in: number;
}