dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 748 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { CreativeWrapperHtmlSnippet } from './creativeWrapperHtmlSnippet';
import { CreativeWrapperOrdering } from './creativeWrapperOrdering';
import { CreativeWrapperStatus } from './creativeWrapperStatus';
export declare class CreativeWrapper extends XMLElement {
protected static XSI_TYPE: string;
id: number;
labelId: number;
header: CreativeWrapperHtmlSnippet;
footer: CreativeWrapperHtmlSnippet;
ordering: CreativeWrapperOrdering;
status: CreativeWrapperStatus;
constructor(id?: number, labelId?: number, header?: CreativeWrapperHtmlSnippet, footer?: CreativeWrapperHtmlSnippet, ordering?: CreativeWrapperOrdering, status?: CreativeWrapperStatus);
}