UNPKG

flowus-api-sdk

Version:

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

51 lines (50 loc) 1.36 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 PropertySchemaFiles */ export interface PropertySchemaFiles { /** * * @type {string} * @memberof PropertySchemaFiles */ id?: string; /** * * @type {string} * @memberof PropertySchemaFiles */ name?: string; /** * * @type {any} * @memberof PropertySchemaFiles */ type?: any | null; /** * * @type {object} * @memberof PropertySchemaFiles */ files?: object; } /** * Check if a given object implements the PropertySchemaFiles interface. */ export declare function instanceOfPropertySchemaFiles(value: object): value is PropertySchemaFiles; export declare function PropertySchemaFilesFromJSON(json: any): PropertySchemaFiles; export declare function PropertySchemaFilesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaFiles; export declare function PropertySchemaFilesToJSON(json: any): PropertySchemaFiles; export declare function PropertySchemaFilesToJSONTyped(value?: PropertySchemaFiles | null, ignoreDiscriminator?: boolean): any;