UNPKG

dfp-lib

Version:

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

23 lines (22 loc) 1.14 kB
import { XMLElement } from '../../common/soap/xmlElement'; import { LineItemType } from './lineItemType'; import { DeliveryRateType } from './deliveryRateType'; import { RoadblockingType } from './roadblockingType'; import { CreativeRotationType } from './creativeRotationType'; import { DfpDateTime } from './dfpDateTime'; export declare class LineItemTemplate extends XMLElement { protected static XSI_TYPE: string; id: number; name: string; isDefault: boolean; lineItemName: string; enabledForSameAdvertiserException: boolean; notes: string; lineItemType: LineItemType; startTime: DfpDateTime; endTime: DfpDateTime; deliveryRateType: DeliveryRateType; roadblockingType: RoadblockingType; creativeRotationType: CreativeRotationType; constructor(id?: number, name?: string, isDefault?: boolean, lineItemName?: string, enabledForSameAdvertiserException?: boolean, notes?: string, lineItemType?: LineItemType, startTime?: DfpDateTime, endTime?: DfpDateTime, deliveryRateType?: DeliveryRateType, roadblockingType?: RoadblockingType, creativeRotationType?: CreativeRotationType); }