/** * Solace Messaging Services */ export type SolaceMessagingService = { /** * ID value of the object */ readonly id?: string; /** * ID of the Event Portal messaging service */ readonly messagingServiceId?: string; /** * Name of the Event Portal messaging service */ readonly messagingServiceName?: string; /** * Values for allowed supported protocols */ supportedProtocols?: Array; readonly environmentId?: string; readonly environmentName?: string; readonly eventMeshId?: string; readonly eventMeshName?: string; solaceCloudMessagingServiceId?: string; /** * The type of payload */ readonly type?: string; };