Interface ConfigCustomDomainCreateSuccessEvent
interface ConfigCustomDomainCreateSuccessEvent { category: "config-custom-domain"; data: { domain: undefined | string; isVerified: undefined | boolean; logoUrl: string; name: string; verificationToken: undefined | string; verifiedAt: undefined | number; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface ConfigCustomDomainCreateSuccessEventSanitised { category: "config-custom-domain"; data: { domain: undefined | string; isVerified: undefined | boolean; logoUrl: string; name: string; verificationToken: undefined; verifiedAt: undefined | number; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "config-custom-domain"
Sanitisation Level DATA
data
data: {
domain: undefined | string;
isVerified: undefined | boolean;
logoUrl: string;
name: string;
verificationToken: undefined | string;
verifiedAt: undefined | number;
}
Type declaration
domain: undefined | string
isVerified: undefined | boolean
logoUrl: string
name: string
Sanitisation Level PII
verificationToken: undefined | string
verifiedAt: undefined | number
requestId
requestId: string
timestamp
timestamp: number