/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { FileResourceSchema } from './FileResourceSchema'; /** * * @export * @interface FilesSchema */ export interface FilesSchema { /** * * @type {Array} * @memberof FilesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof FilesSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof FilesSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the FilesSchema interface. */ export declare function instanceOfFilesSchema(value: object): value is FilesSchema; export declare function FilesSchemaFromJSON(json: any): FilesSchema; export declare function FilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilesSchema; export declare function FilesSchemaToJSON(json: any): FilesSchema; export declare function FilesSchemaToJSONTyped(value?: FilesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FilesSchema.d.ts.map