UNPKG

gads

Version:

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

18 lines (17 loc) 617 B
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[]; }