Interface UserCredentialDeleteSuccessEvent

interface UserCredentialDeleteSuccessEventSanitised {
    category: "user";
    data: {
        credentialId: string;
        profile: string;
        type: string;
        userId: string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "user"
data: {
    credentialId: string;
    profile: string;
    type: string;
    userId: string;
}

Type declaration

  • credentialId: string
  • profile: string
  • type: string
  • userId: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"