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.11 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 User */ export interface User { /** * * @type {string} * @memberof User */ object?: UserObjectEnum; /** * * @type {string} * @memberof User */ id?: string; } /** * @export */ export declare const UserObjectEnum: { readonly User: "user"; }; export type UserObjectEnum = typeof UserObjectEnum[keyof typeof UserObjectEnum]; /** * Check if a given object implements the User interface. */ export declare function instanceOfUser(value: object): value is User; export declare function UserFromJSON(json: any): User; export declare function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User; export declare function UserToJSON(json: any): User; export declare function UserToJSONTyped(value?: User | null, ignoreDiscriminator?: boolean): any;