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