UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

10 lines (9 loc) 455 B
import { ObjectValue } from './objectValue'; import { ChangeHistoryEntityType } from './changeHistoryEntityType'; import { ChangeHistoryOperation } from './changeHistoryOperation'; export declare class ChangeHistoryValue extends ObjectValue { protected static XSI_TYPE: string; entityType: ChangeHistoryEntityType; operation: ChangeHistoryOperation; constructor(entityType?: ChangeHistoryEntityType, operation?: ChangeHistoryOperation); }