/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TranscoderProfile */ export interface TranscoderProfile { /** * * @type {number} * @memberof TranscoderProfile */ id: number; /** * * @type {string} * @memberof TranscoderProfile */ name: string; /** * * @type {string} * @memberof TranscoderProfile */ options?: string; /** * * @type {string} * @memberof TranscoderProfile */ binary?: string; /** * * @type {string} * @memberof TranscoderProfile */ command?: string; /** * * @type {string} * @memberof TranscoderProfile */ outputExtension?: string; /** * * @type {boolean} * @memberof TranscoderProfile */ acceptsBitrate?: boolean; /** * * @type {boolean} * @memberof TranscoderProfile */ acceptsFps?: boolean; /** * * @type {boolean} * @memberof TranscoderProfile */ acceptsResolution?: boolean; } export declare function TranscoderProfileFromJSON(json: any): TranscoderProfile; export declare function TranscoderProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): TranscoderProfile; export declare function TranscoderProfileToJSON(value?: TranscoderProfile | null): any;