UNPKG

dfp-lib

Version:

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

14 lines (13 loc) 531 B
import { XMLElement } from '../../common/soap/xmlElement'; import { GrpUnitType } from './grpUnitType'; import { GrpGender } from './grpGender'; import { GrpAge } from './grpAge'; export declare class GrpDemographicBreakdown extends XMLElement { protected static XSI_TYPE: string; availableUnits: number; matchedUnits: number; unitType: GrpUnitType; gender: GrpGender; age: GrpAge; constructor(availableUnits?: number, matchedUnits?: number, unitType?: GrpUnitType, gender?: GrpGender, age?: GrpAge); }