dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 755 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { PackageStatus } from './packageStatus';
import { DfpDateTime } from './dfpDateTime';
export declare class Package extends XMLElement {
protected static XSI_TYPE: string;
id: number;
proposalId: number;
productPackageId: number;
rateCardId: number;
name: string;
comments: string;
status: PackageStatus;
startDateTime: DfpDateTime;
endDateTime: DfpDateTime;
lastModifiedDateTime: DfpDateTime;
constructor(id?: number, proposalId?: number, productPackageId?: number, rateCardId?: number, name?: string, comments?: string, status?: PackageStatus, startDateTime?: DfpDateTime, endDateTime?: DfpDateTime, lastModifiedDateTime?: DfpDateTime);
}