/** * OutputChannel mapping settings. */ export interface _OutputChannelMapping { /** * List of input channels */ InputChannels?: Array | Iterable; } export interface _UnmarshalledOutputChannelMapping extends _OutputChannelMapping { /** * List of input channels */ InputChannels?: Array; }