gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
15 lines (14 loc) • 513 B
TypeScript
import { AdUnitParent } from './adUnitParent';
import { AdUnitSize } from './adUnitSize';
import { AdUnitTargetWindow } from './adUnitTargetWindow';
import { BaseObject } from './baseObject';
import { TargetPlatform } from './targetPlatform';
export interface SuggestedAdUnit extends BaseObject {
id?: string;
numRequests?: number;
path?: string[];
parentPath?: AdUnitParent[];
targetWindow?: AdUnitTargetWindow;
targetPlatform?: TargetPlatform;
suggestedAdUnitSizes?: AdUnitSize[];
}