gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
18 lines (17 loc) • 641 B
TypeScript
import { BaseObject } from './baseObject';
import { CreativeRotationType } from './creativeRotationType';
import { DeliveryRateType } from './deliveryRateType';
import { LineItemType } from './lineItemType';
import { RoadblockingType } from './roadblockingType';
export interface LineItemTemplate extends BaseObject {
id?: number;
name?: string;
isDefault?: boolean;
lineItemName?: string;
enabledForSameAdvertiserException?: boolean;
notes?: string;
lineItemType?: LineItemType;
deliveryRateType?: DeliveryRateType;
roadblockingType?: RoadblockingType;
creativeRotationType?: CreativeRotationType;
}