UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

12 lines (11 loc) 472 B
import { XMLElement } from '../../common/soap/xmlElement'; import { Size } from './size'; import { EnvironmentType } from './environmentType'; export declare class AdUnitSize extends XMLElement { protected static XSI_TYPE: string; size: Size; environmentType: EnvironmentType; companions: AdUnitSize[]; fullDisplayString: string; constructor(size?: Size, environmentType?: EnvironmentType, companions?: AdUnitSize[], fullDisplayString?: string); }