import type { MessagingServiceConnection } from './MessagingServiceConnection'; import type { SchemaRegistry } from './SchemaRegistry'; export type MessagingServiceFrontEndDTO = { 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?: MessagingServiceFrontEndDTO.messagingServiceType; /** * The name of the messaging service. */ name?: string; messagingServiceConnections?: Array; schemaRegistriesToCreate?: Array; schemaRegistriesToUpdate?: Array; schemaRegistriesToDissociate?: Array; readonly type?: string; eventManagementAgentId?: string; }; export declare namespace MessagingServiceFrontEndDTO { /** * The type of the messaging service. */ enum messagingServiceType { SOLACE = "solace", KAFKA = "kafka" } }