/** * 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 ProxyProfilePartialUpdate */ export interface ProxyProfilePartialUpdate { /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ name?: string; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ proxyGenerator?: ProxyProfilePartialUpdateProxyGeneratorEnum; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ resolution?: string | null; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ rateControl?: ProxyProfilePartialUpdateRateControlEnum; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ crf?: number | null; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ bitrate?: number | null; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ audioBitrate?: number; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ variantsLimit?: number; /** * * @type {boolean} * @memberof ProxyProfilePartialUpdate */ enableDenseFilmstrip?: boolean; /** * * @type {boolean} * @memberof ProxyProfilePartialUpdate */ enableWatermark?: boolean; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ watermarkImage?: string | null; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ watermarkPosition?: ProxyProfilePartialUpdateWatermarkPositionEnum; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ watermarkOpacity?: number; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ watermarkSize?: number; /** * * @type {boolean} * @memberof ProxyProfilePartialUpdate */ enableTimecode?: boolean; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ timecodePosition?: ProxyProfilePartialUpdateTimecodePositionEnum; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ timecodeOpacity?: number; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ timecodeSize?: number; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ lut?: string | null; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ hotfolderCopyTo?: string | null; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ hotfolderReadFrom?: string | null; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ hotfolderQueueTimeout?: number; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ hotfolderEncodeTimeout?: number; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ vantageWorkflowId?: string | null; /** * * @type {string} * @memberof ProxyProfilePartialUpdate */ externalTranscoderStagingPath?: string | null; /** * * @type {number} * @memberof ProxyProfilePartialUpdate */ externalTranscoder?: number | null; } /** * @export * @enum {string} */ export declare enum ProxyProfilePartialUpdateProxyGeneratorEnum { Ffmpeg = "ffmpeg", Hotfolder = "hotfolder", Transkoder = "transkoder", Vantage = "vantage", Noop = "noop" } /** * @export * @enum {string} */ export declare enum ProxyProfilePartialUpdateRateControlEnum { Crf = "CRF", Cbr = "CBR", Vbr = "VBR" } /** * @export * @enum {string} */ export declare enum ProxyProfilePartialUpdateWatermarkPositionEnum { Tl = "TL", Tr = "TR", Br = "BR", Bl = "BL", C = "C" } /** * @export * @enum {string} */ export declare enum ProxyProfilePartialUpdateTimecodePositionEnum { Tl = "TL", Tr = "TR", Br = "BR", Bl = "BL", C = "C" } export declare function ProxyProfilePartialUpdateFromJSON(json: any): ProxyProfilePartialUpdate; export declare function ProxyProfilePartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProxyProfilePartialUpdate; export declare function ProxyProfilePartialUpdateToJSON(value?: ProxyProfilePartialUpdate | null): any;