UNPKG

dfp-lib

Version:

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

10 lines (9 loc) 413 B
import { XMLElement } from '../../common/soap/xmlElement'; import { Money } from './money'; export declare class LineItemActivityAssociation extends XMLElement { protected static XSI_TYPE: string; activityId: number; clickThroughConversionCost: Money; viewThroughConversionCost: Money; constructor(activityId?: number, clickThroughConversionCost?: Money, viewThroughConversionCost?: Money); }