import { BaseMessage } from "../BaseMessage"; import { EnumValue } from "../../enums/EnumValue"; /** * Represents channel connection settings. */ export interface ChannelConnectionSetting extends BaseMessage { /** * Channel Id. * @type {EnumValue} */ Channel: EnumValue; /** * Channel protocol. * @type {EnumValue} */ Protocol: EnumValue; /** * Connection string with format dependent on protocol. * @type {string} */ ConnectionString: string; }