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.39 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 { PropertyValueFilesFilesInner } from './PropertyValueFilesFilesInner'; /** * * @export * @interface PropertyValueFiles */ export interface PropertyValueFiles { /** * * @type {string} * @memberof PropertyValueFiles */ id?: string; /** * * @type {any} * @memberof PropertyValueFiles */ type?: any | null; /** * * @type {Array<PropertyValueFilesFilesInner>} * @memberof PropertyValueFiles */ files?: Array<PropertyValueFilesFilesInner>; } /** * Check if a given object implements the PropertyValueFiles interface. */ export declare function instanceOfPropertyValueFiles(value: object): value is PropertyValueFiles; export declare function PropertyValueFilesFromJSON(json: any): PropertyValueFiles; export declare function PropertyValueFilesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueFiles; export declare function PropertyValueFilesToJSON(json: any): PropertyValueFiles; export declare function PropertyValueFilesToJSONTyped(value?: PropertyValueFiles | null, ignoreDiscriminator?: boolean): any;