src/verifier/oid4vp/dto/presentation-request-options.dto.ts
PresentationRequestOptions DTO
Properties |
session |
session:
|
Type : string
|
Optional |
Optional session identifier for tracking the request. |
webhook |
webhook:
|
Type : WebhookConfig
|
Optional |
Optional webhook configuration to receive the response. |
import { WebhookConfig } from '../../../utils/webhook/webhook.dto';
/**
* PresentationRequestOptions DTO
*/
export interface PresentationRequestOptions {
/**
* Optional session identifier for tracking the request.
*/
session?: string;
/**
* Optional webhook configuration to receive the response.
*/
webhook?: WebhookConfig;
}