UNPKG

flowus-api-sdk

Version:

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

63 lines (62 loc) 1.93 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.PropertySchemaNumberNumberFormatEnum = void 0; exports.instanceOfPropertySchemaNumberNumber = instanceOfPropertySchemaNumberNumber; exports.PropertySchemaNumberNumberFromJSON = PropertySchemaNumberNumberFromJSON; exports.PropertySchemaNumberNumberFromJSONTyped = PropertySchemaNumberNumberFromJSONTyped; exports.PropertySchemaNumberNumberToJSON = PropertySchemaNumberNumberToJSON; exports.PropertySchemaNumberNumberToJSONTyped = PropertySchemaNumberNumberToJSONTyped; /** * @export */ exports.PropertySchemaNumberNumberFormatEnum = { Number: 'number', NumberWithCommas: 'number_with_commas', Percent: 'percent', Dollar: 'dollar', Euro: 'euro', Pound: 'pound', Yen: 'yen', Yuan: 'yuan' }; /** * Check if a given object implements the PropertySchemaNumberNumber interface. */ function instanceOfPropertySchemaNumberNumber(value) { return true; } function PropertySchemaNumberNumberFromJSON(json) { return PropertySchemaNumberNumberFromJSONTyped(json, false); } function PropertySchemaNumberNumberFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'format': json['format'] == null ? undefined : json['format'], }; } function PropertySchemaNumberNumberToJSON(json) { return PropertySchemaNumberNumberToJSONTyped(json, false); } function PropertySchemaNumberNumberToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'format': value['format'], }; }