UNPKG

gads

Version:

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

11 lines (10 loc) 376 B
import { BaseObject } from './baseObject'; import { CustomTargetingKeyStatus } from './customTargetingKeyStatus'; import { CustomTargetingKeyType } from './customTargetingKeyType'; export interface CustomTargetingKey extends BaseObject { id?: number; name?: string; displayName?: string; type?: CustomTargetingKeyType; status?: CustomTargetingKeyStatus; }