@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 386 B
TypeScript
/**
* @export
* @class InputPath
*/
export declare class InputPath {
/**
* Id of input (required)
* @type {string}
* @memberof InputPath
*/
inputId?: string;
/**
* Path to media file (required)
* @type {string}
* @memberof InputPath
*/
inputPath?: string;
constructor(obj?: Partial<InputPath>);
}
export default InputPath;