UNPKG

@kintone/kintone-js-sdk

Version:

The SDK of kintone REST API client on node and browser

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