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.29 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. */ /** * * @export * @interface ParentBlockId */ export interface ParentBlockId { /** * * @type {string} * @memberof ParentBlockId */ type: ParentBlockIdTypeEnum; /** * * @type {string} * @memberof ParentBlockId */ block_id: string; } /** * @export */ export declare const ParentBlockIdTypeEnum: { readonly BlockId: "block_id"; }; export type ParentBlockIdTypeEnum = typeof ParentBlockIdTypeEnum[keyof typeof ParentBlockIdTypeEnum]; /** * Check if a given object implements the ParentBlockId interface. */ export declare function instanceOfParentBlockId(value: object): value is ParentBlockId; export declare function ParentBlockIdFromJSON(json: any): ParentBlockId; export declare function ParentBlockIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): ParentBlockId; export declare function ParentBlockIdToJSON(json: any): ParentBlockId; export declare function ParentBlockIdToJSONTyped(value?: ParentBlockId | null, ignoreDiscriminator?: boolean): any;