UNPKG

diffusion

Version:

Diffusion JavaScript client

24 lines (23 loc) 654 B
"use strict"; /** * @module Services.TopicViews */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateTopicViewResult = void 0; /** * The response of TopicViews CREATE_TOPIC_VIEW service */ var CreateTopicViewResult = /** @class */ (function () { /** * Create a new CreateTopicViewResult instance * * @param view the topic view * @param errors any errors that might have occurred */ function CreateTopicViewResult(view, errors) { this.view = view; this.errors = errors; } return CreateTopicViewResult; }()); exports.CreateTopicViewResult = CreateTopicViewResult;