UNPKG

flowus-api-sdk

Version:

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

40 lines (39 loc) 1.55 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 CreatePagePropertyValueRelation */ export interface CreatePagePropertyValueRelation { /** * * @type {any} * @memberof CreatePagePropertyValueRelation */ type: any | null; /** * * @type {Array<CreatePagePropertyValueRelationRelationInner>} * @memberof CreatePagePropertyValueRelation */ relation: Array<CreatePagePropertyValueRelationRelationInner>; } /** * Check if a given object implements the CreatePagePropertyValueRelation interface. */ export declare function instanceOfCreatePagePropertyValueRelation(value: object): value is CreatePagePropertyValueRelation; export declare function CreatePagePropertyValueRelationFromJSON(json: any): CreatePagePropertyValueRelation; export declare function CreatePagePropertyValueRelationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueRelation; export declare function CreatePagePropertyValueRelationToJSON(json: any): CreatePagePropertyValueRelation; export declare function CreatePagePropertyValueRelationToJSONTyped(value?: CreatePagePropertyValueRelation | null, ignoreDiscriminator?: boolean): any;