UNPKG

flowus-api-sdk

Version:

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

24 lines (23 loc) 1.03 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 { CreatePageResponseParentOneOf } from './CreatePageResponseParentOneOf'; import type { CreatePageResponseParentOneOf1 } from './CreatePageResponseParentOneOf1'; /** * @type CreatePageResponseParent * * @export */ export type CreatePageResponseParent = CreatePageResponseParentOneOf | CreatePageResponseParentOneOf1; export declare function CreatePageResponseParentFromJSON(json: any): CreatePageResponseParent; export declare function CreatePageResponseParentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageResponseParent; export declare function CreatePageResponseParentToJSON(json: any): any; export declare function CreatePageResponseParentToJSONTyped(value?: CreatePageResponseParent | null, ignoreDiscriminator?: boolean): any;