/** * 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 { ResponseResourceSchema } from './ResponseResourceSchema'; /** * * @export * @interface ResponsesSchema */ export interface ResponsesSchema { /** * * @type {Array} * @memberof ResponsesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof ResponsesSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof ResponsesSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the ResponsesSchema interface. */ export declare function instanceOfResponsesSchema(value: object): value is ResponsesSchema; export declare function ResponsesSchemaFromJSON(json: any): ResponsesSchema; export declare function ResponsesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponsesSchema; export declare function ResponsesSchemaToJSON(json: any): ResponsesSchema; export declare function ResponsesSchemaToJSONTyped(value?: ResponsesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResponsesSchema.d.ts.map