UNPKG

@kintone/kintone-js-sdk

Version:

The SDK of kintone REST API client on node and browser

42 lines (34 loc) 612 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * GetFileRequest model */ class GetFileRequest { /** * @param {String} fileKey */ constructor(fileKey) { this.fileKey = fileKey; } /** * Get JSON struct of this model * @return {JSON} */ toJSON() { return { fileKey: this.fileKey }; } /** * Convert this model to JSON string * @return {String} */ toJSONString() { return JSON.stringify(this.toJSON()); } } var _default = GetFileRequest; exports.default = _default;