/** * @export * @class LiveEncoding */ export declare class LiveEncoding { /** * Stream key of the live encoder (required) * @type {string} * @memberof LiveEncoding */ streamKey?: string; /** * IP address of the live encoder (required) * @type {string} * @memberof LiveEncoding */ encoderIp?: string; /** * This will indicate the application 'live' * @type {string} * @memberof LiveEncoding */ application?: string; constructor(obj?: Partial); } export default LiveEncoding;