flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
40 lines (39 loc) • 1.56 kB
TypeScript
/**
* 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 { CreatePagePropertyValueSelectSelect } from './CreatePagePropertyValueSelectSelect';
/**
*
* @export
* @interface CreatePagePropertyValueMultiSelect
*/
export interface CreatePagePropertyValueMultiSelect {
/**
*
* @type {any}
* @memberof CreatePagePropertyValueMultiSelect
*/
type: any | null;
/**
*
* @type {Array<CreatePagePropertyValueSelectSelect>}
* @memberof CreatePagePropertyValueMultiSelect
*/
multi_select: Array<CreatePagePropertyValueSelectSelect>;
}
/**
* Check if a given object implements the CreatePagePropertyValueMultiSelect interface.
*/
export declare function instanceOfCreatePagePropertyValueMultiSelect(value: object): value is CreatePagePropertyValueMultiSelect;
export declare function CreatePagePropertyValueMultiSelectFromJSON(json: any): CreatePagePropertyValueMultiSelect;
export declare function CreatePagePropertyValueMultiSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueMultiSelect;
export declare function CreatePagePropertyValueMultiSelectToJSON(json: any): CreatePagePropertyValueMultiSelect;
export declare function CreatePagePropertyValueMultiSelectToJSONTyped(value?: CreatePagePropertyValueMultiSelect | null, ignoreDiscriminator?: boolean): any;