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.37 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.instanceOfCoverExternal = instanceOfCoverExternal; exports.CoverExternalFromJSON = CoverExternalFromJSON; exports.CoverExternalFromJSONTyped = CoverExternalFromJSONTyped; exports.CoverExternalToJSON = CoverExternalToJSON; exports.CoverExternalToJSONTyped = CoverExternalToJSONTyped; /** * Check if a given object implements the CoverExternal interface. */ function instanceOfCoverExternal(value) { return true; } function CoverExternalFromJSON(json) { return CoverExternalFromJSONTyped(json, false); } function CoverExternalFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'url': json['url'] == null ? undefined : json['url'], }; } function CoverExternalToJSON(json) { return CoverExternalToJSONTyped(json, false); } function CoverExternalToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'url': value['url'], }; }