dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 358 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { TimeUnit } from './timeUnit';
export declare class FrequencyCap extends XMLElement {
protected static XSI_TYPE: string;
maxImpressions: number;
numTimeUnits: number;
timeUnit: TimeUnit;
constructor(maxImpressions?: number, numTimeUnits?: number, timeUnit?: TimeUnit);
}