UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

62 lines (61 loc) 1.91 kB
/** * 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. */ import type { RichTextItemMentionUser } from './RichTextItemMentionUser'; import type { RichTextItemMentionDate } from './RichTextItemMentionDate'; /** * * @export * @interface RichTextItemMention */ export interface RichTextItemMention { /** * * @type {string} * @memberof RichTextItemMention */ type?: RichTextItemMentionTypeEnum; /** * * @type {RichTextItemMentionUser} * @memberof RichTextItemMention */ user?: RichTextItemMentionUser; /** * * @type {RichTextItemMentionUser} * @memberof RichTextItemMention */ page?: RichTextItemMentionUser; /** * * @type {RichTextItemMentionDate} * @memberof RichTextItemMention */ date?: RichTextItemMentionDate; } /** * @export */ export declare const RichTextItemMentionTypeEnum: { readonly User: "user"; readonly Page: "page"; readonly Date: "date"; }; export type RichTextItemMentionTypeEnum = typeof RichTextItemMentionTypeEnum[keyof typeof RichTextItemMentionTypeEnum]; /** * Check if a given object implements the RichTextItemMention interface. */ export declare function instanceOfRichTextItemMention(value: object): value is RichTextItemMention; export declare function RichTextItemMentionFromJSON(json: any): RichTextItemMention; export declare function RichTextItemMentionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemMention; export declare function RichTextItemMentionToJSON(json: any): RichTextItemMention; export declare function RichTextItemMentionToJSONTyped(value?: RichTextItemMention | null, ignoreDiscriminator?: boolean): any;