dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 423 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { DfpDateTime } from './dfpDateTime';
export declare class MarketplaceComment extends XMLElement {
protected static XSI_TYPE: string;
proposalId: number;
comment: string;
creationTime: DfpDateTime;
createdBySeller: boolean;
constructor(proposalId?: number, comment?: string, creationTime?: DfpDateTime, createdBySeller?: boolean);
}