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.46 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.instanceOfIconExternalDetail = instanceOfIconExternalDetail; exports.IconExternalDetailFromJSON = IconExternalDetailFromJSON; exports.IconExternalDetailFromJSONTyped = IconExternalDetailFromJSONTyped; exports.IconExternalDetailToJSON = IconExternalDetailToJSON; exports.IconExternalDetailToJSONTyped = IconExternalDetailToJSONTyped; /** * Check if a given object implements the IconExternalDetail interface. */ function instanceOfIconExternalDetail(value) { return true; } function IconExternalDetailFromJSON(json) { return IconExternalDetailFromJSONTyped(json, false); } function IconExternalDetailFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'url': json['url'] == null ? undefined : json['url'], }; } function IconExternalDetailToJSON(json) { return IconExternalDetailToJSONTyped(json, false); } function IconExternalDetailToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'url': value['url'], }; }