flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
33 lines (32 loc) • 1.11 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface RichTextItemMentionUser
*/
export interface RichTextItemMentionUser {
/**
*
* @type {string}
* @memberof RichTextItemMentionUser
*/
id?: string;
}
/**
* Check if a given object implements the RichTextItemMentionUser interface.
*/
export declare function instanceOfRichTextItemMentionUser(value: object): value is RichTextItemMentionUser;
export declare function RichTextItemMentionUserFromJSON(json: any): RichTextItemMentionUser;
export declare function RichTextItemMentionUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemMentionUser;
export declare function RichTextItemMentionUserToJSON(json: any): RichTextItemMentionUser;
export declare function RichTextItemMentionUserToJSONTyped(value?: RichTextItemMentionUser | null, ignoreDiscriminator?: boolean): any;