dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 563 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { CustomTargetingKeyType } from './customTargetingKeyType';
import { CustomTargetingKeyStatus } from './customTargetingKeyStatus';
export declare class CustomTargetingKey extends XMLElement {
protected static XSI_TYPE: string;
id: number;
name: string;
displayName: string;
type: CustomTargetingKeyType;
status: CustomTargetingKeyStatus;
constructor(id?: number, name?: string, displayName?: string, type?: CustomTargetingKeyType, status?: CustomTargetingKeyStatus);
}