/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AdminResetLearningDataResponse */ export interface AdminResetLearningDataResponse { /** * * @type {boolean} * @memberof AdminResetLearningDataResponse */ reset: boolean; } /** * Check if a given object implements the AdminResetLearningDataResponse interface. */ export declare function instanceOfAdminResetLearningDataResponse(value: object): value is AdminResetLearningDataResponse; export declare function AdminResetLearningDataResponseFromJSON(json: any): AdminResetLearningDataResponse; export declare function AdminResetLearningDataResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminResetLearningDataResponse; export declare function AdminResetLearningDataResponseToJSON(json: any): AdminResetLearningDataResponse; export declare function AdminResetLearningDataResponseToJSONTyped(value?: AdminResetLearningDataResponse | null, ignoreDiscriminator?: boolean): any;