flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
52 lines (51 loc) • 1.5 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 { PropertySchemaSelectSelect } from './PropertySchemaSelectSelect';
/**
*
* @export
* @interface PropertySchemaSelect
*/
export interface PropertySchemaSelect {
/**
*
* @type {string}
* @memberof PropertySchemaSelect
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertySchemaSelect
*/
name?: string;
/**
*
* @type {any}
* @memberof PropertySchemaSelect
*/
type?: any | null;
/**
*
* @type {PropertySchemaSelectSelect}
* @memberof PropertySchemaSelect
*/
select?: PropertySchemaSelectSelect;
}
/**
* Check if a given object implements the PropertySchemaSelect interface.
*/
export declare function instanceOfPropertySchemaSelect(value: object): value is PropertySchemaSelect;
export declare function PropertySchemaSelectFromJSON(json: any): PropertySchemaSelect;
export declare function PropertySchemaSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaSelect;
export declare function PropertySchemaSelectToJSON(json: any): PropertySchemaSelect;
export declare function PropertySchemaSelectToJSONTyped(value?: PropertySchemaSelect | null, ignoreDiscriminator?: boolean): any;