import type { CustomAttribute } from './CustomAttribute'; export type Event = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; name: string; shared?: boolean; applicationDomainId: string; brokerType?: string; readonly numberOfVersions?: number; customAttributes?: Array; readonly type?: string; };