/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { FileResourceSchema } from './FileResourceSchema'; /** * * @export * @interface FileSchema */ export interface FileSchema { /** * * @type {FileResourceSchema} * @memberof FileSchema */ data?: FileResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof FileSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FileSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the FileSchema interface. */ export declare function instanceOfFileSchema(value: object): value is FileSchema; export declare function FileSchemaFromJSON(json: any): FileSchema; export declare function FileSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileSchema; export declare function FileSchemaToJSON(json: any): FileSchema; export declare function FileSchemaToJSONTyped(value?: FileSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FileSchema.d.ts.map