dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
20 lines (19 loc) • 945 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { Size } from './size';
import { CreativePolicyViolation } from './creativePolicyViolation';
import { AppliedLabel } from './appliedLabel';
import { DfpDateTime } from './dfpDateTime';
import { BaseCustomFieldValue } from './baseCustomFieldValue';
export declare abstract class Creative extends XMLElement {
protected static XSI_TYPE: string;
advertiserId: number;
id: number;
name: string;
size: Size;
previewUrl: string;
policyViolations: CreativePolicyViolation[];
appliedLabels: AppliedLabel[];
lastModifiedDateTime: DfpDateTime;
customFieldValues: BaseCustomFieldValue[];
constructor(advertiserId?: number, id?: number, name?: string, size?: Size, previewUrl?: string, policyViolations?: CreativePolicyViolation[], appliedLabels?: AppliedLabel[], lastModifiedDateTime?: DfpDateTime, customFieldValues?: BaseCustomFieldValue[]);
}