dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 768 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { AdUnitParent } from './adUnitParent';
import { AdUnitTargetWindow } from './adUnitTargetWindow';
import { TargetPlatform } from './targetPlatform';
import { AdUnitSize } from './adUnitSize';
export declare class SuggestedAdUnit extends XMLElement {
protected static XSI_TYPE: string;
id: string;
numRequests: number;
path: string[];
parentPath: AdUnitParent[];
targetWindow: AdUnitTargetWindow;
targetPlatform: TargetPlatform;
suggestedAdUnitSizes: AdUnitSize[];
constructor(id?: string, numRequests?: number, path?: string[], parentPath?: AdUnitParent[], targetWindow?: AdUnitTargetWindow, targetPlatform?: TargetPlatform, suggestedAdUnitSizes?: AdUnitSize[]);
}