src/verifier/oid4vp/dto/authorization-response.dto.ts
Properties |
response |
Type : string
|
Decorators :
@IsString()
|
The response string containing the authorization details. |
import { IsString } from 'class-validator';
export class AuthorizationResponse {
/**
* The response string containing the authorization details.
*/
@IsString()
response: string;
}