UNPKG

diffusion

Version:

Diffusion JavaScript client

22 lines (21 loc) 598 B
"use strict"; /** * @module Services.TopicUpdate */ Object.defineProperty(exports, "__esModule", { value: true }); exports.JsonPatchResult = void 0; /** * The response of TopicUpdate ADD_AND_SET_TOPIC service */ var JsonPatchResult = /** @class */ (function () { /** * Create a new AddAndSetTopicRequest instance * * @param result topic creation result */ function JsonPatchResult(failedOperation) { this.failedOperation = failedOperation < 0 ? undefined : failedOperation; } return JsonPatchResult; }()); exports.JsonPatchResult = JsonPatchResult;