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.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 CreatePagePropertyValueTitle
*/
export interface CreatePagePropertyValueTitle {
/**
*
* @type {any}
* @memberof CreatePagePropertyValueTitle
*/
type: any | null;
/**
*
* @type {Array<RichTextItem>}
* @memberof CreatePagePropertyValueTitle
*/
title: Array<RichTextItem>;
}
/**
* Check if a given object implements the CreatePagePropertyValueTitle interface.
*/
export declare function instanceOfCreatePagePropertyValueTitle(value: object): value is CreatePagePropertyValueTitle;
export declare function CreatePagePropertyValueTitleFromJSON(json: any): CreatePagePropertyValueTitle;
export declare function CreatePagePropertyValueTitleFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueTitle;
export declare function CreatePagePropertyValueTitleToJSON(json: any): CreatePagePropertyValueTitle;
export declare function CreatePagePropertyValueTitleToJSONTyped(value?: CreatePagePropertyValueTitle | null, ignoreDiscriminator?: boolean): any;