gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
11 lines (10 loc) • 312 B
TypeScript
import { BaseObject } from './baseObject';
import { UnitType } from './unitType';
export interface LineItemDeliveryForecast extends BaseObject {
lineItemId?: number;
orderId?: number;
unitType?: UnitType;
predictedDeliveryUnits?: number;
deliveredUnits?: number;
matchedUnits?: number;
}