UNPKG

flowus-api-sdk

Version:

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

59 lines (58 loc) 1.85 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 { Block } from './Block'; /** * * @export * @interface GetBlockChildrenResponse */ export interface GetBlockChildrenResponse { /** * * @type {string} * @memberof GetBlockChildrenResponse */ object?: GetBlockChildrenResponseObjectEnum; /** * * @type {Array<Block>} * @memberof GetBlockChildrenResponse */ results?: Array<Block>; /** * 下一页游标,使用最后一个项目的ID作为游标值 * @type {string} * @memberof GetBlockChildrenResponse */ next_cursor?: string; /** * * @type {boolean} * @memberof GetBlockChildrenResponse */ has_more?: boolean; } /** * @export */ export declare const GetBlockChildrenResponseObjectEnum: { readonly List: "list"; }; export type GetBlockChildrenResponseObjectEnum = typeof GetBlockChildrenResponseObjectEnum[keyof typeof GetBlockChildrenResponseObjectEnum]; /** * Check if a given object implements the GetBlockChildrenResponse interface. */ export declare function instanceOfGetBlockChildrenResponse(value: object): value is GetBlockChildrenResponse; export declare function GetBlockChildrenResponseFromJSON(json: any): GetBlockChildrenResponse; export declare function GetBlockChildrenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBlockChildrenResponse; export declare function GetBlockChildrenResponseToJSON(json: any): GetBlockChildrenResponse; export declare function GetBlockChildrenResponseToJSONTyped(value?: GetBlockChildrenResponse | null, ignoreDiscriminator?: boolean): any;