@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 580 B
TypeScript
/**
* @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<LiveEncoding>);
}
export default LiveEncoding;