UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

16 lines (15 loc) 546 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class ProposalLink extends xmlElement_1.XMLElement { constructor(id = null, name = null, creatorId = null, url = null, description = null, creationDateTime = null) { super(); this.id = id; this.name = name; this.creatorId = creatorId; this.url = url; this.description = description; this.creationDateTime = creationDateTime; } } ProposalLink.XSI_TYPE = "ProposalLink"; exports.ProposalLink = ProposalLink;