UNPKG

dfp-lib

Version:

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

12 lines (11 loc) 479 B
import { XMLElement } from '../../common/soap/xmlElement'; import { DfpDateTime } from './dfpDateTime'; export declare class CreativeSet extends XMLElement { protected static XSI_TYPE: string; id: number; name: string; masterCreativeId: number; companionCreativeIds: number[]; lastModifiedDateTime: DfpDateTime; constructor(id?: number, name?: string, masterCreativeId?: number, companionCreativeIds?: number[], lastModifiedDateTime?: DfpDateTime); }