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.91 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.instanceOfV1SearchPageResultProperties = instanceOfV1SearchPageResultProperties;
exports.V1SearchPageResultPropertiesFromJSON = V1SearchPageResultPropertiesFromJSON;
exports.V1SearchPageResultPropertiesFromJSONTyped = V1SearchPageResultPropertiesFromJSONTyped;
exports.V1SearchPageResultPropertiesToJSON = V1SearchPageResultPropertiesToJSON;
exports.V1SearchPageResultPropertiesToJSONTyped = V1SearchPageResultPropertiesToJSONTyped;
const V1SearchPageResultPropertiesTitle_1 = require("./V1SearchPageResultPropertiesTitle");
/**
* Check if a given object implements the V1SearchPageResultProperties interface.
*/
function instanceOfV1SearchPageResultProperties(value) {
return true;
}
function V1SearchPageResultPropertiesFromJSON(json) {
return V1SearchPageResultPropertiesFromJSONTyped(json, false);
}
function V1SearchPageResultPropertiesFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'title': json['title'] == null ? undefined : (0, V1SearchPageResultPropertiesTitle_1.V1SearchPageResultPropertiesTitleFromJSON)(json['title']),
};
}
function V1SearchPageResultPropertiesToJSON(json) {
return V1SearchPageResultPropertiesToJSONTyped(json, false);
}
function V1SearchPageResultPropertiesToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'title': (0, V1SearchPageResultPropertiesTitle_1.V1SearchPageResultPropertiesTitleToJSON)(value['title']),
};
}