gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
12 lines (11 loc) • 445 B
TypeScript
import { BaseObject } from './baseObject';
import { CustomTargetingValueMatchType } from './customTargetingValueMatchType';
import { CustomTargetingValueStatus } from './customTargetingValueStatus';
export interface CustomTargetingValue extends BaseObject {
customTargetingKeyId?: number;
id?: number;
name?: string;
displayName?: string;
matchType?: CustomTargetingValueMatchType;
status?: CustomTargetingValueStatus;
}