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.55 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 { PropertySchemaRelationRelation } from './PropertySchemaRelationRelation';
/**
*
* @export
* @interface PropertySchemaRelation
*/
export interface PropertySchemaRelation {
/**
*
* @type {string}
* @memberof PropertySchemaRelation
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertySchemaRelation
*/
name?: string;
/**
*
* @type {any}
* @memberof PropertySchemaRelation
*/
type?: any | null;
/**
*
* @type {PropertySchemaRelationRelation}
* @memberof PropertySchemaRelation
*/
relation?: PropertySchemaRelationRelation;
}
/**
* Check if a given object implements the PropertySchemaRelation interface.
*/
export declare function instanceOfPropertySchemaRelation(value: object): value is PropertySchemaRelation;
export declare function PropertySchemaRelationFromJSON(json: any): PropertySchemaRelation;
export declare function PropertySchemaRelationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaRelation;
export declare function PropertySchemaRelationToJSON(json: any): PropertySchemaRelation;
export declare function PropertySchemaRelationToJSONTyped(value?: PropertySchemaRelation | null, ignoreDiscriminator?: boolean): any;