/* 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 MonitorScamxService { constructor(public readonly httpRequest: BaseHttpRequest) {} /** * @returns void * @throws ApiError */ public createIntel(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scamx/createIntel', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public reportIncident(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scamx/reportIncident', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public sendMail(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/scamx/sendMail', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } }