@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
24 lines (23 loc) • 739 B
TypeScript
import Output from './Output';
import OutputType from './OutputType';
/**
* Live Media and Metadata Ingest Protocol. See https://tools.ietf.org/html/draft-mekuria-mmediaingest-01.
* @export
* @class LiveMediaIngestOutput
*/
export declare class LiveMediaIngestOutput extends Output {
/**
* Discriminator property for Output
* @type {string}
* @memberof LiveMediaIngestOutput
*/
readonly type: OutputType;
/**
* URL specifying the publishing point for the output. Can use either http or https. (required)
* @type {string}
* @memberof LiveMediaIngestOutput
*/
publishingPoint?: string;
constructor(obj?: Partial<LiveMediaIngestOutput>);
}
export default LiveMediaIngestOutput;