/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export class MonitorScheduleReportService { constructor(public readonly httpRequest: BaseHttpRequest) {} /** * @returns void * @throws ApiError */ public create(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/create', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public update(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/update', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getById(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/getById', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public activateSchedule(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/activateSchedule', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public deactivateSchedule(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/deactivateSchedule', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public delete(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scheduleReport/delete', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } }