/** * 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 { CreateAttemptRequestBodyData } from './CreateAttemptRequestBodyData'; /** * * @export * @interface CreateAttemptRequestBody */ export interface CreateAttemptRequestBody { /** * * @type {CreateAttemptRequestBodyData} * @memberof CreateAttemptRequestBody */ data: CreateAttemptRequestBodyData; } /** * Check if a given object implements the CreateAttemptRequestBody interface. */ export declare function instanceOfCreateAttemptRequestBody(value: object): value is CreateAttemptRequestBody; export declare function CreateAttemptRequestBodyFromJSON(json: any): CreateAttemptRequestBody; export declare function CreateAttemptRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAttemptRequestBody; export declare function CreateAttemptRequestBodyToJSON(json: any): CreateAttemptRequestBody; export declare function CreateAttemptRequestBodyToJSONTyped(value?: CreateAttemptRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateAttemptRequestBody.d.ts.map