Interface PresentationWebSemanticRespondSuccessEventSanitised

interface PresentationWebSemanticRespondSuccessEventSanitised {
    category: "presentation-web-semantic";
    data: {
        ecosystemValidation: undefined | {
            credentials: {
                credentialTypeResults: undefined | {
                    error: undefined | {
                        message: string;
                        type: string;
                    };
                    failReasons: undefined | {
                        message: ...;
                        type: ...;
                    }[];
                    policyVersion: undefined | string;
                    type: string;
                    validated: undefined | boolean;
                }[];
                error: undefined | {
                    message: string;
                    type: string;
                };
            }[];
        };
        verified: boolean;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "presentation-web-semantic"
data: {
    ecosystemValidation: undefined | {
        credentials: {
            credentialTypeResults: undefined | {
                error: undefined | {
                    message: string;
                    type: string;
                };
                failReasons: undefined | {
                    message: ...;
                    type: ...;
                }[];
                policyVersion: undefined | string;
                type: string;
                validated: undefined | boolean;
            }[];
            error: undefined | {
                message: string;
                type: string;
            };
        }[];
    };
    verified: boolean;
}

Type declaration

  • ecosystemValidation: undefined | {
        credentials: {
            credentialTypeResults: undefined | {
                error: undefined | {
                    message: string;
                    type: string;
                };
                failReasons: undefined | {
                    message: ...;
                    type: ...;
                }[];
                policyVersion: undefined | string;
                type: string;
                validated: undefined | boolean;
            }[];
            error: undefined | {
                message: string;
                type: string;
            };
        }[];
    }
  • verified: boolean
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"