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