dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
21 lines (20 loc) • 722 B
JavaScript
"use strict";
const baseContact_1 = require("./baseContact");
class Contact extends baseContact_1.BaseContact {
constructor(id = null, name = null, companyId = null, status = null, address = null, cellPhone = null, comment = null, email = null, faxPhone = null, title = null, workPhone = null) {
super();
this.id = id;
this.name = name;
this.companyId = companyId;
this.status = status;
this.address = address;
this.cellPhone = cellPhone;
this.comment = comment;
this.email = email;
this.faxPhone = faxPhone;
this.title = title;
this.workPhone = workPhone;
}
}
Contact.XSI_TYPE = "Contact";
exports.Contact = Contact;