/* 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 MonitorAdvisoryService { constructor(public readonly httpRequest: BaseHttpRequest) {} /** * @returns void * @throws ApiError */ public create(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/create', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public addMany(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/addMany', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public bulkDeactivate(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/bulkDeactivate', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public bulkDelete(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/bulkDelete', 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/advisory/delete', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public findById(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/findById', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public publish(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/publish', 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/advisory/update', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public deactivate(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/deactivate', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public checkDuplicate(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/checkDuplicate', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public activate(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/activate', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public import(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/import', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getReadingTime(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getReadingTime', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getAdvisoryCount(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getAdvisoryCount', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getFilters(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getFilters', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getAdvisoryStatistics(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getAdvisoryStatistics', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public groupTasksByCategory(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/groupTasksByCategory', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public groupRacIforAdvisory(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/groupRACIforAdvisory', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getPendingAdvisoryStatistics(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getPendingAdvisoryStatistics', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getCompletedAdvisoryStatistics(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getCompletedAdvisoryStatistics', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getUnAssignedAdvisoryStatistics(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getUnAssignedAdvisoryStatistics', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getFilteredAdvisoryStatistics(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/advisory/getFilteredAdvisoryStatistics', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } }