import { AppliedLabel } from './appliedLabel';
import { BaseCustomFieldValue } from './baseCustomFieldValue';
import { BaseObject } from './baseObject';
import { CreativePolicyViolation } from './creativePolicyViolation';
import { DateTime } from './dateTime';
import { Size } from './size';
export interface Creative extends BaseObject {
    advertiserId?: number;
    id?: number;
    name?: string;
    size?: Size;
    previewUrl?: string;
    policyViolations?: CreativePolicyViolation[];
    appliedLabels?: AppliedLabel[];
    lastModifiedDateTime?: DateTime;
    customFieldValues?: BaseCustomFieldValue[];
}
