dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 478 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ReconciliationReportStatus } from './reconciliationReportStatus';
import { DfpDate } from './dfpDate';
export declare class ReconciliationReport extends XMLElement {
protected static XSI_TYPE: string;
id: number;
status: ReconciliationReportStatus;
startDate: DfpDate;
notes: string;
constructor(id?: number, status?: ReconciliationReportStatus, startDate?: DfpDate, notes?: string);
}