UNPKG

flowus-api-sdk

Version:

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

61 lines (60 loc) 1.92 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 PropertySchemaSelectOption */ export interface PropertySchemaSelectOption { /** * * @type {string} * @memberof PropertySchemaSelectOption */ id?: string; /** * * @type {string} * @memberof PropertySchemaSelectOption */ name?: string; /** * * @type {string} * @memberof PropertySchemaSelectOption */ color?: PropertySchemaSelectOptionColorEnum; } /** * @export */ export declare const PropertySchemaSelectOptionColorEnum: { readonly Default: "default"; readonly Gray: "gray"; readonly Brown: "brown"; readonly Orange: "orange"; readonly Yellow: "yellow"; readonly Green: "green"; readonly Blue: "blue"; readonly Purple: "purple"; readonly Pink: "pink"; readonly Red: "red"; }; export type PropertySchemaSelectOptionColorEnum = typeof PropertySchemaSelectOptionColorEnum[keyof typeof PropertySchemaSelectOptionColorEnum]; /** * Check if a given object implements the PropertySchemaSelectOption interface. */ export declare function instanceOfPropertySchemaSelectOption(value: object): value is PropertySchemaSelectOption; export declare function PropertySchemaSelectOptionFromJSON(json: any): PropertySchemaSelectOption; export declare function PropertySchemaSelectOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaSelectOption; export declare function PropertySchemaSelectOptionToJSON(json: any): PropertySchemaSelectOption; export declare function PropertySchemaSelectOptionToJSONTyped(value?: PropertySchemaSelectOption | null, ignoreDiscriminator?: boolean): any;