UNPKG

flowus-api-sdk

Version:

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

52 lines (51 loc) 1.5 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 { PropertySchemaNumberNumber } from './PropertySchemaNumberNumber'; /** * * @export * @interface PropertySchemaNumber */ export interface PropertySchemaNumber { /** * * @type {string} * @memberof PropertySchemaNumber */ id?: string; /** * * @type {string} * @memberof PropertySchemaNumber */ name?: string; /** * * @type {any} * @memberof PropertySchemaNumber */ type?: any | null; /** * * @type {PropertySchemaNumberNumber} * @memberof PropertySchemaNumber */ number?: PropertySchemaNumberNumber; } /** * Check if a given object implements the PropertySchemaNumber interface. */ export declare function instanceOfPropertySchemaNumber(value: object): value is PropertySchemaNumber; export declare function PropertySchemaNumberFromJSON(json: any): PropertySchemaNumber; export declare function PropertySchemaNumberFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaNumber; export declare function PropertySchemaNumberToJSON(json: any): PropertySchemaNumber; export declare function PropertySchemaNumberToJSONTyped(value?: PropertySchemaNumber | null, ignoreDiscriminator?: boolean): any;