/** * 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 { ReportResourceSchema } from './ReportResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface ReportsSchema */ export interface ReportsSchema { /** * * @type {Array} * @memberof ReportsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof ReportsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof ReportsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the ReportsSchema interface. */ export declare function instanceOfReportsSchema(value: object): value is ReportsSchema; export declare function ReportsSchemaFromJSON(json: any): ReportsSchema; export declare function ReportsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportsSchema; export declare function ReportsSchemaToJSON(json: any): ReportsSchema; export declare function ReportsSchemaToJSONTyped(value?: ReportsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ReportsSchema.d.ts.map