/** * 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 { AttemptRelationshipsSchema } from './AttemptRelationshipsSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { AttemptAttributesSchema } from './AttemptAttributesSchema'; /** * * @export * @interface AttemptResourceSchema */ export interface AttemptResourceSchema { /** * * @type {AttemptResourceSchemaTypeEnum} * @memberof AttemptResourceSchema */ type: AttemptResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof AttemptResourceSchema */ id: string; /** * * @type {AttemptAttributesSchema} * @memberof AttemptResourceSchema */ attributes: AttemptAttributesSchema; /** * * @type {AttemptRelationshipsSchema} * @memberof AttemptResourceSchema */ relationships?: AttemptRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof AttemptResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AttemptResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const AttemptResourceSchemaTypeEnum: { readonly Attempts: "attempts"; }; export type AttemptResourceSchemaTypeEnum = typeof AttemptResourceSchemaTypeEnum[keyof typeof AttemptResourceSchemaTypeEnum]; /** * Check if a given object implements the AttemptResourceSchema interface. */ export declare function instanceOfAttemptResourceSchema(value: object): value is AttemptResourceSchema; export declare function AttemptResourceSchemaFromJSON(json: any): AttemptResourceSchema; export declare function AttemptResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptResourceSchema; export declare function AttemptResourceSchemaToJSON(json: any): AttemptResourceSchema; export declare function AttemptResourceSchemaToJSONTyped(value?: AttemptResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptResourceSchema.d.ts.map