/** * 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 { AttemptResourceSchema } from './AttemptResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface AttemptsSchema */ export interface AttemptsSchema { /** * * @type {Array} * @memberof AttemptsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof AttemptsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof AttemptsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the AttemptsSchema interface. */ export declare function instanceOfAttemptsSchema(value: object): value is AttemptsSchema; export declare function AttemptsSchemaFromJSON(json: any): AttemptsSchema; export declare function AttemptsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptsSchema; export declare function AttemptsSchemaToJSON(json: any): AttemptsSchema; export declare function AttemptsSchemaToJSONTyped(value?: AttemptsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptsSchema.d.ts.map