import type { MessagingServiceConnection } from './MessagingServiceConnection'; export type MessagingService = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The eventMeshId associated to the messaging service. */ eventMeshId?: string; /** * The runtimeAgentId associated to the messaging service. */ runtimeAgentId?: string; /** * The solaceCloudMessagingServiceId associated to the messaging service. */ solaceCloudMessagingServiceId?: string; /** * The type of the messaging service. */ messagingServiceType?: MessagingService.messagingServiceType; /** * The name of the messaging service. */ name?: string; messagingServiceConnections?: Array; eventManagementAgentId?: string; readonly type?: string; }; export declare namespace MessagingService { /** * The type of the messaging service. */ enum messagingServiceType { SOLACE = "solace", KAFKA = "kafka" } }