/* eslint-disable */ /* tslint:disable */ /* * --------------------------------------------------------------- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## * ## ## * ## AUTHOR: acacode ## * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## * --------------------------------------------------------------- */ import { HttpClient, RequestParams } from "./http-client"; export class Coreadapter extends HttpClient { /** * @description Reset the emulation and calls the reset callback. * * @tags CoreAdapter * @name ResetCreate * @summary Reset the emulation. * @request POST:/coreadapter/reset */ resetCreate = (params: RequestParams = {}) => this.request({ path: `/coreadapter/reset`, method: "POST", ...params, }); }