UNPKG

flowus-api-sdk

Version:

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

51 lines (50 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. */ /** * * @export * @interface PropertySchemaRichText */ export interface PropertySchemaRichText { /** * * @type {string} * @memberof PropertySchemaRichText */ id?: string; /** * * @type {string} * @memberof PropertySchemaRichText */ name?: string; /** * * @type {any} * @memberof PropertySchemaRichText */ type?: any | null; /** * * @type {object} * @memberof PropertySchemaRichText */ rich_text?: object; } /** * Check if a given object implements the PropertySchemaRichText interface. */ export declare function instanceOfPropertySchemaRichText(value: object): value is PropertySchemaRichText; export declare function PropertySchemaRichTextFromJSON(json: any): PropertySchemaRichText; export declare function PropertySchemaRichTextFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaRichText; export declare function PropertySchemaRichTextToJSON(json: any): PropertySchemaRichText; export declare function PropertySchemaRichTextToJSONTyped(value?: PropertySchemaRichText | null, ignoreDiscriminator?: boolean): any;