import type { CreateScan } from '../models/CreateScan'; import type { CreateTrackScan } from '../models/CreateTrackScan'; import type { ResponseEmpty } from '../models/ResponseEmpty'; import type { ResponseScan } from '../models/ResponseScan'; import type { ResponseTrackScan } from '../models/ResponseTrackScan'; import type { UpdateScan } from '../models/UpdateScan'; export declare class ScanService { /** * Get all * Lists all scans (normal or track) from all runners.
This includes the scan's runner's distance ran. * @returns any * @throws ApiError */ static scanControllerGetAll(): Promise<(Array | Array)>; /** * Post * Create a new scan.
Please remeber to provide the scan's runner's id and distance for normal scans. * @param requestBody CreateScan * @returns ResponseScan * @throws ApiError */ static scanControllerPost(requestBody?: CreateScan): Promise; /** * Get one * Lists all information about the scan whose id got provided. This includes the scan's runner's distance ran. * @param id * @returns any * @throws ApiError */ static scanControllerGetOne(id: number): Promise<(ResponseScan | ResponseTrackScan)>; /** * Put * Update the scan whose id you provided.
Please remember that ids can't be changed and distances must be positive. * @param id * @param requestBody UpdateScan * @returns ResponseScan * @throws ApiError */ static scanControllerPut(id: number, requestBody?: UpdateScan): Promise; /** * Remove * Delete the scan whose id you provided.
If no scan with this id exists it will just return 204(no content). * @param id * @param force * @returns ResponseScan * @returns ResponseEmpty * @throws ApiError */ static scanControllerRemove(id: number, force?: boolean): Promise; /** * Post track scans * Create a new track scan.
This is just a alias for posting /scans * @param requestBody CreateTrackScan * @returns ResponseScan * @throws ApiError */ static scanControllerPostTrackScans(requestBody?: CreateTrackScan): Promise; }