UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

10 lines (9 loc) 297 B
import { BaseObject } from './baseObject'; import { EnvironmentType } from './environmentType'; import { Size } from './size'; export interface AdUnitSize extends BaseObject { size?: Size; environmentType?: EnvironmentType; companions?: AdUnitSize[]; fullDisplayString?: string; }