gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
8 lines (7 loc) • 323 B
TypeScript
import { ChangeHistoryEntityType } from './changeHistoryEntityType';
import { ChangeHistoryOperation } from './changeHistoryOperation';
import { ObjectValue } from './objectValue';
export interface ChangeHistoryValue extends ObjectValue {
entityType?: ChangeHistoryEntityType;
operation?: ChangeHistoryOperation;
}