flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
50 lines (49 loc) • 1.88 kB
JavaScript
;
/* 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.instanceOfPropertySchemaSelectSelect = instanceOfPropertySchemaSelectSelect;
exports.PropertySchemaSelectSelectFromJSON = PropertySchemaSelectSelectFromJSON;
exports.PropertySchemaSelectSelectFromJSONTyped = PropertySchemaSelectSelectFromJSONTyped;
exports.PropertySchemaSelectSelectToJSON = PropertySchemaSelectSelectToJSON;
exports.PropertySchemaSelectSelectToJSONTyped = PropertySchemaSelectSelectToJSONTyped;
const PropertySchemaSelectOption_1 = require("./PropertySchemaSelectOption");
/**
* Check if a given object implements the PropertySchemaSelectSelect interface.
*/
function instanceOfPropertySchemaSelectSelect(value) {
return true;
}
function PropertySchemaSelectSelectFromJSON(json) {
return PropertySchemaSelectSelectFromJSONTyped(json, false);
}
function PropertySchemaSelectSelectFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'options': json['options'] == null ? undefined : (json['options'].map(PropertySchemaSelectOption_1.PropertySchemaSelectOptionFromJSON)),
};
}
function PropertySchemaSelectSelectToJSON(json) {
return PropertySchemaSelectSelectToJSONTyped(json, false);
}
function PropertySchemaSelectSelectToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'options': value['options'] == null ? undefined : (value['options'].map(PropertySchemaSelectOption_1.PropertySchemaSelectOptionToJSON)),
};
}