import { BaseObject } from './baseObject';
import { CreativeWrapperOrdering } from './creativeWrapperOrdering';
import { CreativeWrapperStatus } from './creativeWrapperStatus';
export interface CreativeWrapper extends BaseObject {
    id?: number;
    labelId?: number;
    htmlHeader?: string;
    htmlFooter?: string;
    ampHead?: string;
    ampBody?: string;
    ordering?: CreativeWrapperOrdering;
    status?: CreativeWrapperStatus;
}
