UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

51 lines (50 loc) 1.72 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * FlowUs API * FlowUs Developer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfPropertySchemaFormulaFormula = instanceOfPropertySchemaFormulaFormula; exports.PropertySchemaFormulaFormulaFromJSON = PropertySchemaFormulaFormulaFromJSON; exports.PropertySchemaFormulaFormulaFromJSONTyped = PropertySchemaFormulaFormulaFromJSONTyped; exports.PropertySchemaFormulaFormulaToJSON = PropertySchemaFormulaFormulaToJSON; exports.PropertySchemaFormulaFormulaToJSONTyped = PropertySchemaFormulaFormulaToJSONTyped; /** * Check if a given object implements the PropertySchemaFormulaFormula interface. */ function instanceOfPropertySchemaFormulaFormula(value) { if (!('expression' in value) || value['expression'] === undefined) return false; return true; } function PropertySchemaFormulaFormulaFromJSON(json) { return PropertySchemaFormulaFormulaFromJSONTyped(json, false); } function PropertySchemaFormulaFormulaFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'expression': json['expression'], }; } function PropertySchemaFormulaFormulaToJSON(json) { return PropertySchemaFormulaFormulaToJSONTyped(json, false); } function PropertySchemaFormulaFormulaToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'expression': value['expression'], }; }