UNPKG

dfp-lib

Version:

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

13 lines (12 loc) 523 B
import { XMLElement } from '../../common/soap/xmlElement'; import { UnitType } from './unitType'; export declare class LineItemDeliveryForecast extends XMLElement { protected static XSI_TYPE: string; lineItemId: number; orderId: number; unitType: UnitType; predictedDeliveryUnits: number; deliveredUnits: number; matchedUnits: number; constructor(lineItemId?: number, orderId?: number, unitType?: UnitType, predictedDeliveryUnits?: number, deliveredUnits?: number, matchedUnits?: number); }