UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

17 lines (16 loc) 824 B
import { XMLElement } from '../../common/soap/xmlElement'; import { Size } from './size'; import { AppliedLabel } from './appliedLabel'; import { CreativeSizeType } from './creativeSizeType'; export declare class CreativePlaceholder extends XMLElement { protected static XSI_TYPE: string; size: Size; creativeTemplateId: number; companions: CreativePlaceholder[]; appliedLabels: AppliedLabel[]; effectiveAppliedLabels: AppliedLabel[]; expectedCreativeCount: number; creativeSizeType: CreativeSizeType; targetingName: string; constructor(size?: Size, creativeTemplateId?: number, companions?: CreativePlaceholder[], appliedLabels?: AppliedLabel[], effectiveAppliedLabels?: AppliedLabel[], expectedCreativeCount?: number, creativeSizeType?: CreativeSizeType, targetingName?: string); }