UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

9 lines (8 loc) 236 B
import { BaseObject } from './baseObject'; import { GoalType } from './goalType'; import { UnitType } from './unitType'; export interface Goal extends BaseObject { goalType?: GoalType; unitType?: UnitType; units?: number; }