dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 530 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ContentMetadataKeyHierarchyPage extends xmlElement_1.XMLElement {
constructor(totalResultSetSize = null, startIndex = null, results = null) {
super();
this.totalResultSetSize = totalResultSetSize;
this.startIndex = startIndex;
this.results = results;
}
}
ContentMetadataKeyHierarchyPage.XSI_TYPE = "ContentMetadataKeyHierarchyPage";
exports.ContentMetadataKeyHierarchyPage = ContentMetadataKeyHierarchyPage;