/** * 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 { ResponseResourceSchema } from './ResponseResourceSchema'; /** * * @export * @interface ResponseSchema */ export interface ResponseSchema { /** * * @type {ResponseResourceSchema} * @memberof ResponseSchema */ data?: ResponseResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof ResponseSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ResponseSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ResponseSchema interface. */ export declare function instanceOfResponseSchema(value: object): value is ResponseSchema; export declare function ResponseSchemaFromJSON(json: any): ResponseSchema; export declare function ResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseSchema; export declare function ResponseSchemaToJSON(json: any): ResponseSchema; export declare function ResponseSchemaToJSONTyped(value?: ResponseSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResponseSchema.d.ts.map