Interface CredentialPresentationVerifierConfigurationUpsertStartEventSanitised

interface CredentialPresentationVerifierConfigurationUpsertStartEventSanitised {
    category: "credential-presentation";
    data: {
        certificateCommonName: undefined | string;
        certificateCountry: undefined | string;
        display: undefined | {
            bodyText: undefined | string;
            headerText: string;
            logoImage: {
                altText: string;
                url: string;
            };
            primaryColorHex: undefined | string;
            privacyPolicyUrl: undefined | string;
        };
        domains: undefined | string[];
        redirectUris: string[];
        resultAvailableInFrontChannel: undefined | boolean;
        supportedMode: undefined | string;
        walletProviders: undefined | {
            authorizationEndpoint: string;
            id: string;
        }[];
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-presentation"
data: {
    certificateCommonName: undefined | string;
    certificateCountry: undefined | string;
    display: undefined | {
        bodyText: undefined | string;
        headerText: string;
        logoImage: {
            altText: string;
            url: string;
        };
        primaryColorHex: undefined | string;
        privacyPolicyUrl: undefined | string;
    };
    domains: undefined | string[];
    redirectUris: string[];
    resultAvailableInFrontChannel: undefined | boolean;
    supportedMode: undefined | string;
    walletProviders: undefined | {
        authorizationEndpoint: string;
        id: string;
    }[];
}

Type declaration

  • certificateCommonName: undefined | string
  • certificateCountry: undefined | string
  • display: undefined | {
        bodyText: undefined | string;
        headerText: string;
        logoImage: {
            altText: string;
            url: string;
        };
        primaryColorHex: undefined | string;
        privacyPolicyUrl: undefined | string;
    }
  • domains: undefined | string[]
  • redirectUris: string[]
  • resultAvailableInFrontChannel: undefined | boolean
  • supportedMode: undefined | string
  • walletProviders: undefined | {
        authorizationEndpoint: string;
        id: string;
    }[]
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"