dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 399 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { DfpDateTime } from './dfpDateTime';
export declare class OfflineError extends XMLElement {
protected static XSI_TYPE: string;
fieldPath: string;
trigger: string;
errorTime: DfpDateTime;
errorString: string;
constructor(fieldPath?: string, trigger?: string, errorTime?: DfpDateTime, errorString?: string);
}