Interface DidCreateStartEvent

interface DidCreateStartEventSanitised {
    category: "did";
    data: {
        method: string;
        options: undefined | {
            [key: string]: string | boolean;
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "did"
data: {
    method: string;
    options: undefined | {
        [key: string]: string | boolean;
    };
}

Type declaration

  • method: string
  • options: undefined | {
        [key: string]: string | boolean;
    }
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"