@kintone/kintone-js-sdk
Version:
The SDK of kintone REST API client on node and browser
49 lines (41 loc) • 849 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* DeleteCommentRequest model
*/
class DeleteCommentRequest {
/**
* constructor
* @param {Integer} appID
* @param {Integer} recordID
* @param {Integer} commentID
*/
constructor(appID, recordID, commentID) {
this.appID = appID;
this.recordID = recordID;
this.commentID = commentID;
}
/**
* Get JSON struct of this model
* @return {integer}
*/
toJSON() {
return {
app: this.appID,
record: this.recordID,
comment: this.commentID
};
}
/**
* Convert this model to JSON string
* @return {String}
*/
toJSONString() {
return JSON.stringify(this.toJSON());
}
}
var _default = DeleteCommentRequest;
exports.default = _default;