Interface DidRetrieveListFailEvent

interface DidRetrieveListFailEventSanitised {
    category: "did";
    data: {
        error: {
            message: string;
            type: string;
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "did"
data: {
    error: {
        message: string;
        type: string;
    };
}

Type declaration

  • error: {
        message: string;
        type: string;
    }
    • message: string
    • type: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"