dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 367 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { GoalType } from './goalType';
import { UnitType } from './unitType';
export declare class Goal extends XMLElement {
protected static XSI_TYPE: string;
goalType: GoalType;
unitType: UnitType;
units: number;
constructor(goalType?: GoalType, unitType?: UnitType, units?: number);
}