UNPKG

flowus-api-sdk

Version:

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

72 lines (71 loc) 2.75 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 { BlockData } from './BlockData'; /** * * @export * @interface AppendBlockChildrenRequestChildrenInner */ export interface AppendBlockChildrenRequestChildrenInner { /** * * @type {string} * @memberof AppendBlockChildrenRequestChildrenInner */ type: AppendBlockChildrenRequestChildrenInnerTypeEnum; /** * * @type {BlockData} * @memberof AppendBlockChildrenRequestChildrenInner */ data: BlockData; } /** * @export */ export declare const AppendBlockChildrenRequestChildrenInnerTypeEnum: { readonly Paragraph: "paragraph"; readonly Heading1: "heading_1"; readonly Heading2: "heading_2"; readonly Heading3: "heading_3"; readonly BulletedListItem: "bulleted_list_item"; readonly NumberedListItem: "numbered_list_item"; readonly ToDo: "to_do"; readonly Quote: "quote"; readonly Toggle: "toggle"; readonly Code: "code"; readonly Image: "image"; readonly File: "file"; readonly Bookmark: "bookmark"; readonly Embed: "embed"; readonly Callout: "callout"; readonly Equation: "equation"; readonly LinkToPage: "link_to_page"; readonly Template: "template"; readonly SyncedBlock: "synced_block"; readonly Divider: "divider"; readonly ColumnList: "column_list"; readonly Column: "column"; readonly Table: "table"; readonly TableRow: "table_row"; readonly ChildPage: "child_page"; readonly ChildDatabase: "child_database"; }; export type AppendBlockChildrenRequestChildrenInnerTypeEnum = typeof AppendBlockChildrenRequestChildrenInnerTypeEnum[keyof typeof AppendBlockChildrenRequestChildrenInnerTypeEnum]; /** * Check if a given object implements the AppendBlockChildrenRequestChildrenInner interface. */ export declare function instanceOfAppendBlockChildrenRequestChildrenInner(value: object): value is AppendBlockChildrenRequestChildrenInner; export declare function AppendBlockChildrenRequestChildrenInnerFromJSON(json: any): AppendBlockChildrenRequestChildrenInner; export declare function AppendBlockChildrenRequestChildrenInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppendBlockChildrenRequestChildrenInner; export declare function AppendBlockChildrenRequestChildrenInnerToJSON(json: any): AppendBlockChildrenRequestChildrenInner; export declare function AppendBlockChildrenRequestChildrenInnerToJSONTyped(value?: AppendBlockChildrenRequestChildrenInner | null, ignoreDiscriminator?: boolean): any;