dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 424 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { UnitType } from './unitType';
export declare class AlternativeUnitTypeForecast extends XMLElement {
protected static XSI_TYPE: string;
unitType: UnitType;
matchedUnits: number;
availableUnits: number;
possibleUnits: number;
constructor(unitType?: UnitType, matchedUnits?: number, availableUnits?: number, possibleUnits?: number);
}