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