@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 339 B
TypeScript
import InputType from './InputType';
/**
* @export
* @class InputTypeResponse
*/
export declare class InputTypeResponse {
/**
* The type of the input
* @type {InputType}
* @memberof InputTypeResponse
*/
type?: InputType;
constructor(obj?: Partial<InputTypeResponse>);
}
export default InputTypeResponse;