File

src/verifier/oid4vp/dto/presentation-request-options.dto.ts

Description

PresentationRequestOptions DTO

Index

Properties

Properties

redirectUri
redirectUri: string
Type : string
Optional

Optional redirect URI to which the user-agent should be redirected after the presentation is completed.

session
session: string
Type : string
Optional

Optional session identifier for tracking the request.

webhook
webhook: WebhookConfig
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;

    /**
     * Optional redirect URI to which the user-agent should be redirected after the presentation is completed.
     */
    redirectUri?: string;
}

results matching ""

    No results matching ""