export type EventMesh = { 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 mesh. */ name?: string; /** * The environmentId of the Event Mesh */ environmentId?: string; /** * The description of the event mesh. */ description?: string; /** * The type of the broker used in the event mesh. */ brokerType?: EventMesh.brokerType; /** * The type of this payload, eventMesh. */ readonly type?: string; }; export declare namespace EventMesh { /** * The type of the broker used in the event mesh. */ enum brokerType { KAFKA = "kafka", SOLACE = "solace" } }