dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 587 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { SetTopBoxSyncStatus } from './setTopBoxSyncStatus';
import { CanoeSyncResult } from './canoeSyncResult';
export declare class SetTopBoxInfo extends XMLElement {
protected static XSI_TYPE: string;
syncStatus: SetTopBoxSyncStatus;
lastSyncResult: CanoeSyncResult;
lastSyncCanoeResponseMessage: string;
nielsenProductCategoryCode: string;
constructor(syncStatus?: SetTopBoxSyncStatus, lastSyncResult?: CanoeSyncResult, lastSyncCanoeResponseMessage?: string, nielsenProductCategoryCode?: string);
}