flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
46 lines (45 loc) • 1.37 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.
*/
import type { RichTextItem } from './RichTextItem';
/**
*
* @export
* @interface PropertyValueRichText
*/
export interface PropertyValueRichText {
/**
*
* @type {string}
* @memberof PropertyValueRichText
*/
id?: string;
/**
*
* @type {any}
* @memberof PropertyValueRichText
*/
type: any | null;
/**
*
* @type {Array<RichTextItem>}
* @memberof PropertyValueRichText
*/
rich_text: Array<RichTextItem>;
}
/**
* Check if a given object implements the PropertyValueRichText interface.
*/
export declare function instanceOfPropertyValueRichText(value: object): value is PropertyValueRichText;
export declare function PropertyValueRichTextFromJSON(json: any): PropertyValueRichText;
export declare function PropertyValueRichTextFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueRichText;
export declare function PropertyValueRichTextToJSON(json: any): PropertyValueRichText;
export declare function PropertyValueRichTextToJSONTyped(value?: PropertyValueRichText | null, ignoreDiscriminator?: boolean): any;