UNPKG

flowus-api-sdk

Version:

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

46 lines (45 loc) 1.5 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. */ import type { CreatePagePropertyValueRelationRelationInner } from './CreatePagePropertyValueRelationRelationInner'; /** * * @export * @interface PropertyValueRelation */ export interface PropertyValueRelation { /** * * @type {string} * @memberof PropertyValueRelation */ id?: string; /** * * @type {any} * @memberof PropertyValueRelation */ type?: any | null; /** * * @type {Array<CreatePagePropertyValueRelationRelationInner>} * @memberof PropertyValueRelation */ relation?: Array<CreatePagePropertyValueRelationRelationInner>; } /** * Check if a given object implements the PropertyValueRelation interface. */ export declare function instanceOfPropertyValueRelation(value: object): value is PropertyValueRelation; export declare function PropertyValueRelationFromJSON(json: any): PropertyValueRelation; export declare function PropertyValueRelationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueRelation; export declare function PropertyValueRelationToJSON(json: any): PropertyValueRelation; export declare function PropertyValueRelationToJSONTyped(value?: PropertyValueRelation | null, ignoreDiscriminator?: boolean): any;