@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 639 B
TypeScript
/**
* @export
* @class InsertableContentInput
*/
export declare class InsertableContentInput {
/**
* Id of the input hosting the video file (required)
* @type {string}
* @memberof InsertableContentInput
*/
inputId?: string;
/**
* Path to the file on the input (required)
* @type {string}
* @memberof InsertableContentInput
*/
inputPath?: string;
/**
* Description of this input
* @type {string}
* @memberof InsertableContentInput
*/
description?: string;
constructor(obj?: Partial<InsertableContentInput>);
}
export default InsertableContentInput;