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.54 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.instanceOfRichTextItemMentionUser = instanceOfRichTextItemMentionUser;
exports.RichTextItemMentionUserFromJSON = RichTextItemMentionUserFromJSON;
exports.RichTextItemMentionUserFromJSONTyped = RichTextItemMentionUserFromJSONTyped;
exports.RichTextItemMentionUserToJSON = RichTextItemMentionUserToJSON;
exports.RichTextItemMentionUserToJSONTyped = RichTextItemMentionUserToJSONTyped;
/**
* Check if a given object implements the RichTextItemMentionUser interface.
*/
function instanceOfRichTextItemMentionUser(value) {
return true;
}
function RichTextItemMentionUserFromJSON(json) {
return RichTextItemMentionUserFromJSONTyped(json, false);
}
function RichTextItemMentionUserFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'id': json['id'] == null ? undefined : json['id'],
};
}
function RichTextItemMentionUserToJSON(json) {
return RichTextItemMentionUserToJSONTyped(json, false);
}
function RichTextItemMentionUserToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'id': value['id'],
};
}