diffusion
Version:
Diffusion JavaScript client
26 lines (25 loc) • 722 B
JavaScript
;
/**
* @module Services.TopicUpdate
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApplyJsonPatchRequest = void 0;
/**
* Data type for a SET_TOPIC request.
*/
var ApplyJsonPatchRequest = /** @class */ (function () {
/**
* Create a new SetTopicRequest instance
*
* @param path the topic path
* @param patch the JSON patch encoded in a string
* @param constraint the update constraint
*/
function ApplyJsonPatchRequest(path, patch, constraint) {
this.path = path;
this.patch = patch;
this.constraint = constraint;
}
return ApplyJsonPatchRequest;
}());
exports.ApplyJsonPatchRequest = ApplyJsonPatchRequest;