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.38 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 { PropertyValueSelectSelect } from './PropertyValueSelectSelect'; /** * * @export * @interface PropertyValueSelect */ export interface PropertyValueSelect { /** * * @type {string} * @memberof PropertyValueSelect */ id?: string; /** * * @type {any} * @memberof PropertyValueSelect */ type: any | null; /** * * @type {PropertyValueSelectSelect} * @memberof PropertyValueSelect */ select: PropertyValueSelectSelect; } /** * Check if a given object implements the PropertyValueSelect interface. */ export declare function instanceOfPropertyValueSelect(value: object): value is PropertyValueSelect; export declare function PropertyValueSelectFromJSON(json: any): PropertyValueSelect; export declare function PropertyValueSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueSelect; export declare function PropertyValueSelectToJSON(json: any): PropertyValueSelect; export declare function PropertyValueSelectToJSONTyped(value?: PropertyValueSelect | null, ignoreDiscriminator?: boolean): any;