dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 676 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { CustomTargetingValueMatchType } from './customTargetingValueMatchType';
import { CustomTargetingValueStatus } from './customTargetingValueStatus';
export declare class CustomTargetingValue extends XMLElement {
protected static XSI_TYPE: string;
customTargetingKeyId: number;
id: number;
name: string;
displayName: string;
matchType: CustomTargetingValueMatchType;
status: CustomTargetingValueStatus;
constructor(customTargetingKeyId?: number, id?: number, name?: string, displayName?: string, matchType?: CustomTargetingValueMatchType, status?: CustomTargetingValueStatus);
}