UNPKG

flowus-api-sdk

Version:

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

40 lines (39 loc) 1.42 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 { RichTextItem } from './RichTextItem'; /** * * @export * @interface CreatePagePropertyValueRichText */ export interface CreatePagePropertyValueRichText { /** * * @type {any} * @memberof CreatePagePropertyValueRichText */ type: any | null; /** * * @type {Array<RichTextItem>} * @memberof CreatePagePropertyValueRichText */ rich_text: Array<RichTextItem>; } /** * Check if a given object implements the CreatePagePropertyValueRichText interface. */ export declare function instanceOfCreatePagePropertyValueRichText(value: object): value is CreatePagePropertyValueRichText; export declare function CreatePagePropertyValueRichTextFromJSON(json: any): CreatePagePropertyValueRichText; export declare function CreatePagePropertyValueRichTextFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueRichText; export declare function CreatePagePropertyValueRichTextToJSON(json: any): CreatePagePropertyValueRichText; export declare function CreatePagePropertyValueRichTextToJSONTyped(value?: CreatePagePropertyValueRichText | null, ignoreDiscriminator?: boolean): any;