UNPKG

diffusion

Version:

Diffusion JavaScript client

29 lines (28 loc) 877 B
"use strict"; /** * @module Services.FetchQuery */ Object.defineProperty(exports, "__esModule", { value: true }); exports.FetchTopicResult = void 0; /** * Data type contained in the {@link FetchQueryResult} response. */ var FetchTopicResult = /** @class */ (function () { /** * Create a new FetchTopicResult instance * * @param path the topic path * @param type the topic type * @param value the value of the topic in case it was requested * @param propertiesIndex the properties index */ function FetchTopicResult(path, type, propertiesIndex, topicSizeInfo, value) { this.path = path; this.type = type; this.value = value; this.propertiesIndex = propertiesIndex; this.topicSizeInfo = topicSizeInfo; } return FetchTopicResult; }()); exports.FetchTopicResult = FetchTopicResult;