/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { CreateFileRequestBodyData } from './CreateFileRequestBodyData'; /** * * @export * @interface CreateFileRequestBody */ export interface CreateFileRequestBody { /** * * @type {CreateFileRequestBodyData} * @memberof CreateFileRequestBody */ data: CreateFileRequestBodyData; } /** * Check if a given object implements the CreateFileRequestBody interface. */ export declare function instanceOfCreateFileRequestBody(value: object): value is CreateFileRequestBody; export declare function CreateFileRequestBodyFromJSON(json: any): CreateFileRequestBody; export declare function CreateFileRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFileRequestBody; export declare function CreateFileRequestBodyToJSON(json: any): CreateFileRequestBody; export declare function CreateFileRequestBodyToJSONTyped(value?: CreateFileRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateFileRequestBody.d.ts.map