dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
20 lines (19 loc) • 817 B
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class MobileApplication extends xmlElement_1.XMLElement {
constructor(id = null, displayName = null, appStoreId = null, appStore = null, isArchived = null, appStoreName = null, developerName = null, platform = null, isFree = null, downloadUrl = null) {
super();
this.id = id;
this.displayName = displayName;
this.appStoreId = appStoreId;
this.appStore = appStore;
this.isArchived = isArchived;
this.appStoreName = appStoreName;
this.developerName = developerName;
this.platform = platform;
this.isFree = isFree;
this.downloadUrl = downloadUrl;
}
}
MobileApplication.XSI_TYPE = "MobileApplication";
exports.MobileApplication = MobileApplication;