UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

39 lines (38 loc) 1.38 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. */ /** * * @export * @interface PropertySchemaRelationRelation */ export interface PropertySchemaRelationRelation { /** * 关联的数据库ID * @type {string} * @memberof PropertySchemaRelationRelation */ database_id: string; /** * 同步属性ID * @type {string} * @memberof PropertySchemaRelationRelation */ synced_property_id?: string; } /** * Check if a given object implements the PropertySchemaRelationRelation interface. */ export declare function instanceOfPropertySchemaRelationRelation(value: object): value is PropertySchemaRelationRelation; export declare function PropertySchemaRelationRelationFromJSON(json: any): PropertySchemaRelationRelation; export declare function PropertySchemaRelationRelationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaRelationRelation; export declare function PropertySchemaRelationRelationToJSON(json: any): PropertySchemaRelationRelation; export declare function PropertySchemaRelationRelationToJSONTyped(value?: PropertySchemaRelationRelation | null, ignoreDiscriminator?: boolean): any;