UNPKG

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.32 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 PropertyValueTitle */ export interface PropertyValueTitle { /** * * @type {string} * @memberof PropertyValueTitle */ id?: string; /** * * @type {any} * @memberof PropertyValueTitle */ type?: any | null; /** * * @type {Array<RichTextItem>} * @memberof PropertyValueTitle */ title?: Array<RichTextItem>; } /** * Check if a given object implements the PropertyValueTitle interface. */ export declare function instanceOfPropertyValueTitle(value: object): value is PropertyValueTitle; export declare function PropertyValueTitleFromJSON(json: any): PropertyValueTitle; export declare function PropertyValueTitleFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueTitle; export declare function PropertyValueTitleToJSON(json: any): PropertyValueTitle; export declare function PropertyValueTitleToJSONTyped(value?: PropertyValueTitle | null, ignoreDiscriminator?: boolean): any;