UNPKG

flowus-api-sdk

Version:

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

49 lines (48 loc) 1.44 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.instanceOfBlockDataExternal = instanceOfBlockDataExternal; exports.BlockDataExternalFromJSON = BlockDataExternalFromJSON; exports.BlockDataExternalFromJSONTyped = BlockDataExternalFromJSONTyped; exports.BlockDataExternalToJSON = BlockDataExternalToJSON; exports.BlockDataExternalToJSONTyped = BlockDataExternalToJSONTyped; /** * Check if a given object implements the BlockDataExternal interface. */ function instanceOfBlockDataExternal(value) { return true; } function BlockDataExternalFromJSON(json) { return BlockDataExternalFromJSONTyped(json, false); } function BlockDataExternalFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'url': json['url'] == null ? undefined : json['url'], }; } function BlockDataExternalToJSON(json) { return BlockDataExternalToJSONTyped(json, false); } function BlockDataExternalToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'url': value['url'], }; }