/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 AdAttributesSchemaFilesInner */ export interface AdAttributesSchemaFilesInner { /** * master = full aspect render, image = platform crop, zip = bundle. * @type {AdAttributesSchemaFilesInnerTypeEnum} * @memberof AdAttributesSchemaFilesInner */ type?: AdAttributesSchemaFilesInnerTypeEnum; /** * Aspect variant for a master. `portrait` was removed - nothing consumed it. * @type {AdAttributesSchemaFilesInnerVariantEnum} * @memberof AdAttributesSchemaFilesInner */ variant?: AdAttributesSchemaFilesInnerVariantEnum; /** * Target platform for a crop (linkedin_short / indeed / apply / apply_card / ...). * @type {string} * @memberof AdAttributesSchemaFilesInner */ platform?: string; /** * Locale of the text composited onto this crop. Present only on * `type: image`; masters are text-free artwork and the zip is a * bundle, so both omit it. Absent on crops generated before * per-locale banners shipped - treat as the job's languageCode. * @type {string} * @memberof AdAttributesSchemaFilesInner */ language?: string; /** * * @type {string} * @memberof AdAttributesSchemaFilesInner */ s3Key?: string; /** * * @type {string} * @memberof AdAttributesSchemaFilesInner */ size?: string; /** * * @type {number} * @memberof AdAttributesSchemaFilesInner */ width?: number; /** * * @type {number} * @memberof AdAttributesSchemaFilesInner */ height?: number; /** * * @type {number} * @memberof AdAttributesSchemaFilesInner */ version?: number; /** * * @type {string} * @memberof AdAttributesSchemaFilesInner */ name?: string; /** * Short-lived presigned GET url for the preview. Absent if signing failed. * @type {string} * @memberof AdAttributesSchemaFilesInner */ url?: string; } /** * @export */ export declare const AdAttributesSchemaFilesInnerTypeEnum: { readonly Master: "master"; readonly Image: "image"; readonly Zip: "zip"; }; export type AdAttributesSchemaFilesInnerTypeEnum = typeof AdAttributesSchemaFilesInnerTypeEnum[keyof typeof AdAttributesSchemaFilesInnerTypeEnum]; /** * @export */ export declare const AdAttributesSchemaFilesInnerVariantEnum: { readonly Square: "square"; readonly Landscape: "landscape"; }; export type AdAttributesSchemaFilesInnerVariantEnum = typeof AdAttributesSchemaFilesInnerVariantEnum[keyof typeof AdAttributesSchemaFilesInnerVariantEnum]; /** * Check if a given object implements the AdAttributesSchemaFilesInner interface. */ export declare function instanceOfAdAttributesSchemaFilesInner(value: object): value is AdAttributesSchemaFilesInner; export declare function AdAttributesSchemaFilesInnerFromJSON(json: any): AdAttributesSchemaFilesInner; export declare function AdAttributesSchemaFilesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdAttributesSchemaFilesInner; export declare function AdAttributesSchemaFilesInnerToJSON(json: any): AdAttributesSchemaFilesInner; export declare function AdAttributesSchemaFilesInnerToJSONTyped(value?: AdAttributesSchemaFilesInner | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AdAttributesSchemaFilesInner.d.ts.map