@procivis/react-native-one-core
    Preparing search index...

    Interface CreateProofRequest

    If protocol is ISO_MDL, specify the device engagement type by referencing an entry from verificationEngagement of your configuration. iso_mdl_engagement accepts either QR code content (for QR device engagement) or NFC engagement parameters from nfc_read_iso_mdl_engagement.

    interface CreateProofRequest {
        engagement?: string;
        isoMdlEngagement?: string;
        profile?: string;
        proofSchemaId: string;
        protocol: string;
        redirectUri?: string;
        transport?: string[];
        verifierCertificate?: string;
        verifierDidId?: string;
        verifierIdentifierId?: string;
        verifierKey?: string;
    }
    Index

    Properties

    engagement?: string

    Use for ISO mDL verification over BLE.

    isoMdlEngagement?: string

    Use to specify device engagement type.

    profile?: string

    Country profile to associate with this request.

    proofSchemaId: string

    Choose a proof schema to use.

    protocol: string

    Choose the protocol to use for verification. Check the verificationProtocol object of your configuration for supported options and reference the configuration instance.

    redirectUri?: string

    When a shared proof is accepted, the wallet will be redirected to the resource specified here, if redirects are enabled in the configuration. The URI must use a scheme that is allowed by the configuration.

    transport?: string[]

    Choose the transport protocol for the exchange. Check the transport object of your configuration for supported options and reference the configuration instance.

    verifierCertificate?: string

    If the identifier contains multiple certificates, use this to specify which key to use. If omitted, the first suitable certificate is used.

    verifierDidId?: string

    Deprecated. Use verifierIdentifierId.

    verifierIdentifierId?: string

    Choose the identifier to use to make the request.

    verifierKey?: string

    If the identifier contains multiple keys, use this to specify which key to use. If omitted, the first suitable key is used.