import type { CustomAttribute } from './CustomAttribute'; export type EventApi = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The name of the event api. */ name?: string; shared?: boolean; applicationDomainId?: string; readonly numberOfVersions?: number; /** * The type of the broker used for the event API */ brokerType?: EventApi.brokerType; customAttributes?: Array; /** * The type of this payload, eventApi. */ readonly type?: string; }; export declare namespace EventApi { /** * The type of the broker used for the event API */ enum brokerType { KAFKA = "kafka", SOLACE = "solace" } }