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.53 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 { PropertyValueMultiSelectMultiSelectInner } from './PropertyValueMultiSelectMultiSelectInner'; /** * * @export * @interface PropertyValueMultiSelect */ export interface PropertyValueMultiSelect { /** * * @type {string} * @memberof PropertyValueMultiSelect */ id?: string; /** * * @type {any} * @memberof PropertyValueMultiSelect */ type: any | null; /** * * @type {Array<PropertyValueMultiSelectMultiSelectInner>} * @memberof PropertyValueMultiSelect */ multi_select: Array<PropertyValueMultiSelectMultiSelectInner>; } /** * Check if a given object implements the PropertyValueMultiSelect interface. */ export declare function instanceOfPropertyValueMultiSelect(value: object): value is PropertyValueMultiSelect; export declare function PropertyValueMultiSelectFromJSON(json: any): PropertyValueMultiSelect; export declare function PropertyValueMultiSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueMultiSelect; export declare function PropertyValueMultiSelectToJSON(json: any): PropertyValueMultiSelect; export declare function PropertyValueMultiSelectToJSONTyped(value?: PropertyValueMultiSelect | null, ignoreDiscriminator?: boolean): any;