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.58 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 CreatePageResponseCreatedBy */ export interface CreatePageResponseCreatedBy { /** * * @type {string} * @memberof CreatePageResponseCreatedBy */ object?: CreatePageResponseCreatedByObjectEnum; /** * 创建者ID * @type {string} * @memberof CreatePageResponseCreatedBy */ id?: string; } /** * @export */ export declare const CreatePageResponseCreatedByObjectEnum: { readonly User: "user"; }; export type CreatePageResponseCreatedByObjectEnum = typeof CreatePageResponseCreatedByObjectEnum[keyof typeof CreatePageResponseCreatedByObjectEnum]; /** * Check if a given object implements the CreatePageResponseCreatedBy interface. */ export declare function instanceOfCreatePageResponseCreatedBy(value: object): value is CreatePageResponseCreatedBy; export declare function CreatePageResponseCreatedByFromJSON(json: any): CreatePageResponseCreatedBy; export declare function CreatePageResponseCreatedByFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageResponseCreatedBy; export declare function CreatePageResponseCreatedByToJSON(json: any): CreatePageResponseCreatedBy; export declare function CreatePageResponseCreatedByToJSONTyped(value?: CreatePageResponseCreatedBy | null, ignoreDiscriminator?: boolean): any;