/**
 * Api Documentation
 * Api Documentation
 *
 * OpenAPI spec version: 1.0
 *
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { BaseModel } from './baseModel';
import { Size } from './size';
export interface CreativeCompactDTO {
    active?: boolean;
    advertiser?: BaseModel;
    content?: string;
    createdBy?: number;
    creationTime?: number;
    creativeSet?: BaseModel;
    dcoAd?: boolean;
    id?: number;
    isArchived?: boolean;
    modifiedBy?: number;
    modifiedTime?: number;
    name?: string;
    nativeAd?: boolean;
    refactored?: boolean;
    size?: Size;
    type?: CreativeCompactDTO.TypeEnum;
    urlPath?: string;
}
export declare namespace CreativeCompactDTO {
    type TypeEnum = 'image' | 'html' | 'zippedHTML' | 'video' | 'nativeAd' | 'nativeVideo' | 'fbxImage' | 'flash' | 'fbNewsFeed' | 'fbRightColumn' | 'fbAppInstall' | 'fbAppEngagement' | 'clickTracker' | 'fbxImageNewsFeed' | 'nativeIcon' | 'ctvVideo';
    const TypeEnum: {
        Image: TypeEnum;
        Html: TypeEnum;
        ZippedHTML: TypeEnum;
        Video: TypeEnum;
        NativeAd: TypeEnum;
        NativeVideo: TypeEnum;
        FbxImage: TypeEnum;
        Flash: TypeEnum;
        FbNewsFeed: TypeEnum;
        FbRightColumn: TypeEnum;
        FbAppInstall: TypeEnum;
        FbAppEngagement: TypeEnum;
        ClickTracker: TypeEnum;
        FbxImageNewsFeed: TypeEnum;
        NativeIcon: TypeEnum;
        CtvVideo: TypeEnum;
    };
}
