diffusion
Version:
Diffusion JavaScript client
22 lines (21 loc) • 572 B
JavaScript
;
/**
* @module Services.TopicViews
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListTopicViewsResult = void 0;
/**
* The result type of of TopicViews LIST_TOPIC_VIEWS service
*/
var ListTopicViewsResult = /** @class */ (function () {
/**
* Create a new ListTopicViewsResult instance
*
* @param result the array of topic views
*/
function ListTopicViewsResult(result) {
this.result = result;
}
return ListTopicViewsResult;
}());
exports.ListTopicViewsResult = ListTopicViewsResult;