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