flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
34 lines (33 loc) • 1.29 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 { PropertySchemaSelectOption } from './PropertySchemaSelectOption';
/**
*
* @export
* @interface PropertySchemaSelectSelect
*/
export interface PropertySchemaSelectSelect {
/**
*
* @type {Array<PropertySchemaSelectOption>}
* @memberof PropertySchemaSelectSelect
*/
options?: Array<PropertySchemaSelectOption>;
}
/**
* Check if a given object implements the PropertySchemaSelectSelect interface.
*/
export declare function instanceOfPropertySchemaSelectSelect(value: object): value is PropertySchemaSelectSelect;
export declare function PropertySchemaSelectSelectFromJSON(json: any): PropertySchemaSelectSelect;
export declare function PropertySchemaSelectSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaSelectSelect;
export declare function PropertySchemaSelectSelectToJSON(json: any): PropertySchemaSelectSelect;
export declare function PropertySchemaSelectSelectToJSONTyped(value?: PropertySchemaSelectSelect | null, ignoreDiscriminator?: boolean): any;