UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

14 lines (13 loc) 442 B
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; }