>\n) {\n const [body, setBody] = useState();\n const [data, setData] = useState();\n const [errorData, setErrorData] = useState();\n const [loading, setLoading] = useState(false);\n const [isSuccess, setIsSuccess] = useState(false);\n const [isError, setIsError] = useState(false);\n\n const saveData = async () => {\n try {\n setLoading(true);\n setIsSuccess(false);\n setIsError(false);\n\n const response =\n _has(body, \"id\") && !!(body as any)?.id\n ? await call(body, { type: ApiSaveEnum.PATCH })\n : await call(body, { type: ApiSaveEnum.POST });\n setData(response.data);\n setIsSuccess(true);\n } catch (error: any) {\n setErrorData(error.response.data);\n setIsError(true);\n } finally {\n setLoading(false);\n setBody(undefined);\n }\n };\n\n useEffect(() => {\n body && saveData();\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [body]);\n\n return { body, data, errorData, loading, isError, isSuccess, setBody };\n}\n\nexport default useSaveData;\n","import { CustomerDTO, SiteDTO, TestRecordUserDTO } from \"@generated/v2\";\n\nexport const getName = (user: TestRecordUserDTO) => {\n if (user.firstName && user.lastName) {\n return `${user.firstName} ${user.lastName}`;\n } else if (user.username) {\n return user.username;\n }\n};\n\n/**\n * Generic function to Pick an object from an array\n * and return selected values\n * Is build to use with sites and customers arrays from PageFilter component\n */\nexport const getDataForUserInfoFilters = (\n id: number,\n list: Array = []\n) => {\n const selectedEntry = list.find(entry => entry.id === id);\n return {\n name: selectedEntry?.name,\n id: selectedEntry?.id,\n };\n};\n","\"use client\";\n\nimport React from \"react\";\nimport { Alert } from \"antd\";\nimport { ErrorBoundary } from \"react-error-boundary\";\nimport { useTranslation } from \"react-i18next\";\n\ninterface Props {\n children: React.ReactNode;\n}\n\nconst Fallback = ({ error }: any) => {\n const { t } = useTranslation();\n return (\n \n );\n};\n\nconst ErrorFallbackUI = ({ children }: Props) => {\n return {children};\n};\n\nexport default ErrorFallbackUI;\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Chr. Hansen - MilkSafe\n * Management and collection of MilkSafe test results.\n *\n * The version of the OpenAPI document: 2.0\n * Contact: info@nodes.dk\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from \"./configuration\";\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport globalAxios, { AxiosPromise, AxiosInstance } from 'axios';\n\nexport const BASE_PATH = \"http://localhost\".replace(/\\/+$/, \"\");\n\n/**\n *\n * @export\n */\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n ssv: \" \",\n tsv: \"\\t\",\n pipes: \"|\",\n};\n\n/**\n *\n * @export\n * @interface RequestArgs\n */\nexport interface RequestArgs {\n url: string;\n options: any;\n}\n\n/**\n *\n * @export\n * @class BaseAPI\n */\nexport class BaseAPI {\n protected configuration: Configuration | undefined;\n\n constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {\n if (configuration) {\n this.configuration = configuration;\n this.basePath = configuration.basePath || this.basePath;\n }\n }\n};\n\n/**\n *\n * @export\n * @class RequiredError\n * @extends {Error}\n */\nexport class RequiredError extends Error {\n name: \"RequiredError\" = \"RequiredError\";\n constructor(public field: string, msg?: string) {\n super(msg);\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Chr. Hansen - MilkSafe\n * Management and collection of MilkSafe test results.\n *\n * The version of the OpenAPI document: 2.0\n * Contact: info@nodes.dk\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport * as globalImportUrl from 'url';\nimport { Configuration } from './configuration';\nimport globalAxios, { AxiosPromise, AxiosInstance } from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';\n\n/**\n * \n * @export\n * @interface Address\n */\nexport interface Address {\n /**\n * The street part of the address including street number and other similar information required to locate the address.\n * @type {string}\n * @memberof Address\n */\n street?: string | null;\n /**\n * The postal code as defined for the address\\' country.\n * @type {string}\n * @memberof Address\n */\n postalCode?: string | null;\n /**\n * The city of the address.\n * @type {string}\n * @memberof Address\n */\n city?: string | null;\n /**\n * The country of this address.\n * @type {string}\n * @memberof Address\n */\n country?: string | null;\n /**\n * Optional comment about the address.\n * @type {string}\n * @memberof Address\n */\n comment?: string | null;\n}\n/**\n * \n * @export\n * @interface AmountDouble\n */\nexport interface AmountDouble {\n /**\n * \n * @type {number}\n * @memberof AmountDouble\n */\n amount?: number;\n /**\n * \n * @type {number}\n * @memberof AmountDouble\n */\n increase?: number;\n}\n/**\n * \n * @export\n * @interface AmountInt\n */\nexport interface AmountInt {\n /**\n * \n * @type {number}\n * @memberof AmountInt\n */\n amount?: number;\n /**\n * \n * @type {number}\n * @memberof AmountInt\n */\n increase?: number;\n}\n/**\n * The type/role a user can have.\n * @export\n * @enum {string}\n */\nexport enum Annotation {\n PositiveControl = 'PositiveControl',\n Rejected = 'Rejected',\n Original = 'Original',\n Confirmation = 'Confirmation',\n Deleted = 'Deleted',\n AnimalControl = 'AnimalControl',\n SecondConfirmation = 'SecondConfirmation',\n Verification = 'Verification'\n}\n\n/**\n * The type of attachment for a test record.\n * @export\n * @enum {string}\n */\nexport enum AttachmentType {\n Image = 'Image'\n}\n\n/**\n * \n * @export\n * @interface CloudRequest\n */\nexport interface CloudRequest {\n /**\n * \n * @type {string}\n * @memberof CloudRequest\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof CloudRequest\n */\n email?: string | null;\n /**\n * \n * @type {string}\n * @memberof CloudRequest\n */\n country?: string | null;\n /**\n * \n * @type {boolean}\n * @memberof CloudRequest\n */\n customer?: boolean;\n}\n/**\n * \n * @export\n * @interface ContactInfo\n */\nexport interface ContactInfo {\n /**\n * The name of the contact.\n * @type {string}\n * @memberof ContactInfo\n */\n name?: string | null;\n /**\n * The contact\\'s phone number if any.\n * @type {string}\n * @memberof ContactInfo\n */\n phone?: string | null;\n /**\n * The contact\\'s email if any.\n * @type {string}\n * @memberof ContactInfo\n */\n email?: string | null;\n /**\n * An optional comment about the contact.\n * @type {string}\n * @memberof ContactInfo\n */\n comment?: string | null;\n}\n/**\n * \n * @export\n * @interface CreateCustomerRequest\n */\nexport interface CreateCustomerRequest {\n /**\n * The name of the customer.\n * @type {string}\n * @memberof CreateCustomerRequest\n */\n name: string;\n /**\n * Optional reference to the customer entity in SAP.\n * @type {string}\n * @memberof CreateCustomerRequest\n */\n soldTo?: string | null;\n /**\n * \n * @type {Address}\n * @memberof CreateCustomerRequest\n */\n address?: Address;\n /**\n * \n * @type {ContactInfo}\n * @memberof CreateCustomerRequest\n */\n contact?: ContactInfo;\n /**\n * \n * @type {CustomerCategory}\n * @memberof CreateCustomerRequest\n */\n category?: CustomerCategory;\n /**\n * \n * @type {CustomerType}\n * @memberof CreateCustomerRequest\n */\n type?: CustomerType;\n /**\n * \n * @type {number}\n * @memberof CreateCustomerRequest\n */\n distributorId?: number | null;\n}\n/**\n * \n * @export\n * @interface CreateGroupedTestRecordRequest\n */\nexport interface CreateGroupedTestRecordRequest {\n /**\n * The ID of the customer this test grouping belongs to.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequest\n */\n customerId?: number | null;\n /**\n * The ID of the site this test grouping belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequest\n */\n siteId?: number;\n /**\n * \n * @type {string}\n * @memberof CreateGroupedTestRecordRequest\n */\n appVersion?: string | null;\n /**\n * Test records within the group\n * @type {Array}\n * @memberof CreateGroupedTestRecordRequest\n */\n testRecords?: Array | null;\n}\n/**\n * \n * @export\n * @interface CreateGroupedTestRecordRequestTestRecord\n */\nexport interface CreateGroupedTestRecordRequestTestRecord {\n /**\n * The date the test was performed.\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n testDate: string;\n /**\n * \n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n testDateOffset?: string | null;\n /**\n * Optionally the serial number of the reader used for the test.\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n readerSerialNumber?: string | null;\n /**\n * \n * @type {Wgs84Point}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n location?: Wgs84Point;\n /**\n * Optionally an identifier for the route this test was made on.\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n route?: string | null;\n /**\n * Optional comments about this test record.\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n result?: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this test result.\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n testTypeId: number;\n /**\n * The ID of the user who performed the test.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n userId?: number;\n /**\n * \n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n operatorId?: string | null;\n /**\n * The ID of the site this test record belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n siteId?: number;\n /**\n * The levels of the individual substances in this test.\n * @type {Array}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n substances?: Array | null;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n customerId?: number | null;\n /**\n * \n * @type {Annotation}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n annotation?: Annotation;\n /**\n * Manufacturing Date\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n manufacturingDate?: string | null;\n /**\n * Batch Number\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n batchNumber?: string | null;\n /**\n * The raw QR code\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n rawQR?: string | null;\n /**\n * Cartridge Id - the id scanned from QR\n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n cassetteId?: string | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * \n * @type {string}\n * @memberof CreateGroupedTestRecordRequestTestRecord\n */\n appVersion?: string | null;\n}\n/**\n * A site is a subdivision under a customer and can have designated site administrators.\n * @export\n * @interface CreateSiteRequest\n */\nexport interface CreateSiteRequest {\n /**\n * The name of the site.\n * @type {string}\n * @memberof CreateSiteRequest\n */\n name: string;\n /**\n * Optional reference to site entity in SAP.\n * @type {string}\n * @memberof CreateSiteRequest\n */\n shipTo?: string | null;\n /**\n * The ID of the customer this site belongs to.\n * @type {number}\n * @memberof CreateSiteRequest\n */\n customerId: number;\n /**\n * \n * @type {ContactInfo}\n * @memberof CreateSiteRequest\n */\n contact?: ContactInfo;\n /**\n * \n * @type {Address}\n * @memberof CreateSiteRequest\n */\n address?: Address;\n /**\n * \n * @type {CustomerType}\n * @memberof CreateSiteRequest\n */\n type?: CustomerType;\n /**\n * \n * @type {Wgs84Point}\n * @memberof CreateSiteRequest\n */\n location?: Wgs84Point;\n}\n/**\n * \n * @export\n * @interface CreateSubscriptionRequest\n */\nexport interface CreateSubscriptionRequest {\n /**\n * \n * @type {number}\n * @memberof CreateSubscriptionRequest\n */\n siteId?: number;\n /**\n * \n * @type {string}\n * @memberof CreateSubscriptionRequest\n */\n email?: string | null;\n}\n/**\n * \n * @export\n * @interface CreateSubstanceRequest\n */\nexport interface CreateSubstanceRequest {\n /**\n * The name of the substance.\n * @type {string}\n * @memberof CreateSubstanceRequest\n */\n name: string;\n}\n/**\n * \n * @export\n * @interface CreateTermsRequest\n */\nexport interface CreateTermsRequest {\n /**\n * The terms for that are being presented to the user\n * @type {string}\n * @memberof CreateTermsRequest\n */\n termsText?: string | null;\n /**\n * Boolean indicating if it has been released\n * @type {boolean}\n * @memberof CreateTermsRequest\n */\n released?: boolean;\n}\n/**\n * \n * @export\n * @interface CreateTestRecordRequest\n */\nexport interface CreateTestRecordRequest {\n /**\n * The date the test was performed.\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n testDate: string;\n /**\n * \n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n testDateOffset?: string | null;\n /**\n * Optionally the serial number of the reader used for the test.\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n readerSerialNumber?: string | null;\n /**\n * \n * @type {Wgs84Point}\n * @memberof CreateTestRecordRequest\n */\n location?: Wgs84Point;\n /**\n * Optionally an identifier for the route this test was made on.\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n route?: string | null;\n /**\n * Optional comments about this test record.\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof CreateTestRecordRequest\n */\n result?: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this test result.\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof CreateTestRecordRequest\n */\n testTypeId: number;\n /**\n * The ID of the user who performed the test.\n * @type {number}\n * @memberof CreateTestRecordRequest\n */\n userId?: number;\n /**\n * \n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n operatorId?: string | null;\n /**\n * The ID of the site this test record belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof CreateTestRecordRequest\n */\n siteId?: number;\n /**\n * The levels of the individual substances in this test.\n * @type {Array}\n * @memberof CreateTestRecordRequest\n */\n substances?: Array | null;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof CreateTestRecordRequest\n */\n customerId?: number | null;\n /**\n * \n * @type {Annotation}\n * @memberof CreateTestRecordRequest\n */\n annotation?: Annotation;\n /**\n * Manufacturing Date\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n manufacturingDate?: string | null;\n /**\n * Batch Number\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n batchNumber?: string | null;\n /**\n * The raw QR code\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n rawQR?: string | null;\n /**\n * Cartridge Id - the id scanned from QR\n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n cassetteId?: string | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof CreateTestRecordRequest\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof CreateTestRecordRequest\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * \n * @type {string}\n * @memberof CreateTestRecordRequest\n */\n appVersion?: string | null;\n /**\n * \n * @type {number}\n * @memberof CreateTestRecordRequest\n */\n groupedTestRecordId?: number;\n}\n/**\n * \n * @export\n * @interface CreateTestRecordRequestTestRecordSubstance\n */\nexport interface CreateTestRecordRequestTestRecordSubstance {\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof CreateTestRecordRequestTestRecordSubstance\n */\n substanceId: number;\n /**\n * The level measured for this substance in the test.\n * @type {number}\n * @memberof CreateTestRecordRequestTestRecordSubstance\n */\n level: number;\n /**\n * \n * @type {TestResult}\n * @memberof CreateTestRecordRequestTestRecordSubstance\n */\n result?: TestResult;\n /**\n * Optional information that points to the data about the measurement of this particular substance in the raw test result.\n * @type {string}\n * @memberof CreateTestRecordRequestTestRecordSubstance\n */\n readerResultReference?: string | null;\n}\n/**\n * \n * @export\n * @interface CreateTestTypeRequest\n */\nexport interface CreateTestTypeRequest {\n /**\n * \n * @type {string}\n * @memberof CreateTestTypeRequest\n */\n name: string;\n /**\n * Negative threshold as part of the judging policy. Values between this and the positive value are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof CreateTestTypeRequest\n */\n negativeValue?: number;\n /**\n * Positive threshold as part of the judging policy. Values between the negative value and this are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof CreateTestTypeRequest\n */\n positiveValue?: number;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof CreateTestTypeRequest\n */\n category?: TestTypeCategory;\n /**\n * \n * @type {JudgeType}\n * @memberof CreateTestTypeRequest\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof CreateTestTypeRequest\n */\n judgingDirection?: JudgingDirection;\n /**\n * The substances measured with this test type.\n * @type {Array}\n * @memberof CreateTestTypeRequest\n */\n substances?: Array | null;\n /**\n * Nullable temperature. This is used for some test to determine settings.\n * @type {number}\n * @memberof CreateTestTypeRequest\n */\n temperature?: number | null;\n /**\n * Nullable incubation time. This is used for some test to determine settings.\n * @type {number}\n * @memberof CreateTestTypeRequest\n */\n incubationTime?: number | null;\n /**\n * An id to help identify what test this is.\n * @type {string}\n * @memberof CreateTestTypeRequest\n */\n qrIdString?: string | null;\n}\n/**\n * \n * @export\n * @interface CreateUserRequest\n */\nexport interface CreateUserRequest {\n /**\n * User identifier in MilkSafe (it does not have to be an email address). Must match Salesforce User ID for customer admin roles.\n * @type {string}\n * @memberof CreateUserRequest\n */\n username: string;\n /**\n * Optionally the first name of the user if this is a person.\n * @type {string}\n * @memberof CreateUserRequest\n */\n firstName?: string | null;\n /**\n * Optionally the last name of the user if this is a person.\n * @type {string}\n * @memberof CreateUserRequest\n */\n lastName?: string | null;\n /**\n * Optionally the user\\'s email.\n * @type {string}\n * @memberof CreateUserRequest\n */\n email?: string | null;\n /**\n * An optional comment about the user.\n * @type {string}\n * @memberof CreateUserRequest\n */\n comment?: string | null;\n /**\n * Required for Root and Operator users. Must not be specified for site administrators unless the external user flag is false. If specified when updating existing users their password will be changed to this value.\n * @type {string}\n * @memberof CreateUserRequest\n */\n password?: string | null;\n /**\n * Optionally the user\\'s phone number.\n * @type {string}\n * @memberof CreateUserRequest\n */\n phoneNumber?: string | null;\n /**\n * \n * @type {UserType}\n * @memberof CreateUserRequest\n */\n type?: UserType;\n /**\n * \n * @type {number}\n * @memberof CreateUserRequest\n */\n customerId?: number;\n /**\n * \n * @type {number}\n * @memberof CreateUserRequest\n */\n siteId?: number | null;\n /**\n * \n * @type {boolean}\n * @memberof CreateUserRequest\n */\n sharedUser?: boolean;\n /**\n * \n * @type {string}\n * @memberof CreateUserRequest\n */\n primaryOperatorId?: string | null;\n /**\n * \n * @type {Address}\n * @memberof CreateUserRequest\n */\n address?: Address;\n}\n/**\n * \n * @export\n * @interface CreateVerificationRequest\n */\nexport interface CreateVerificationRequest {\n /**\n * Serial number of the reader\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n readerSerialNumber: string;\n /**\n * The date the verification was performed.\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n testDate: string;\n /**\n * \n * @type {string}\n * @memberof CreateVerificationRequest\n */\n testDateOffset?: string | null;\n /**\n * Optional comments about this verification record.\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof CreateVerificationRequest\n */\n result: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this verification result.\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof CreateVerificationRequest\n */\n testTypeId: number;\n /**\n * \n * @type {string}\n * @memberof CreateVerificationRequest\n */\n operatorId?: string | null;\n /**\n * The levels of the individual substances in this verification.\n * @type {Array}\n * @memberof CreateVerificationRequest\n */\n substances: Array;\n /**\n * \n * @type {TestDeviceType}\n * @memberof CreateVerificationRequest\n */\n deviceType: TestDeviceType;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof CreateVerificationRequest\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * Software version of the reader\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n readerSoftwareVersion?: string | null;\n /**\n * Software version of the app, not used on desktop reader\n * @type {string}\n * @memberof CreateVerificationRequest\n */\n appVersion?: string | null;\n}\n/**\n * A measurement of a substance in a verification record.\n * @export\n * @interface CreateVerificationRequestVerificationSubstance\n */\nexport interface CreateVerificationRequestVerificationSubstance {\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof CreateVerificationRequestVerificationSubstance\n */\n substanceId: number;\n /**\n * The level measured for this substance in the verification.\n * @type {number}\n * @memberof CreateVerificationRequestVerificationSubstance\n */\n level: number;\n /**\n * \n * @type {TestResult}\n * @memberof CreateVerificationRequestVerificationSubstance\n */\n result: TestResult;\n /**\n * Optional information that points to the data about the measurement of this particular substance in the raw verification result.\n * @type {string}\n * @memberof CreateVerificationRequestVerificationSubstance\n */\n readerResultReference?: string | null;\n /**\n * The intensity for this substance in the test.\n * @type {number}\n * @memberof CreateVerificationRequestVerificationSubstance\n */\n intensity?: number | null;\n}\n/**\n * A MilkSafe customer.\n * @export\n * @interface Customer\n */\nexport interface Customer {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Customer\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Customer\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Customer\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Customer\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Customer\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Customer\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Customer\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Customer\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Customer\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Customer\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Customer\n */\n deletedBy?: User;\n /**\n * The name of the customer.\n * @type {string}\n * @memberof Customer\n */\n name: string;\n /**\n * Optional comment about the customer.\n * @type {string}\n * @memberof Customer\n */\n comment?: string | null;\n /**\n * Optional reference to the customer entity in SAP.\n * @type {string}\n * @memberof Customer\n */\n soldTo?: string | null;\n /**\n * \n * @type {Address}\n * @memberof Customer\n */\n address?: Address;\n /**\n * \n * @type {ContactInfo}\n * @memberof Customer\n */\n contact?: ContactInfo;\n /**\n * The sites associated with the customer.\n * @type {Array}\n * @memberof Customer\n */\n sites?: Array | null;\n /**\n * \n * @type {CustomerCategory}\n * @memberof Customer\n */\n category?: CustomerCategory;\n /**\n * \n * @type {CustomerType}\n * @memberof Customer\n */\n type?: CustomerType;\n /**\n * \n * @type {number}\n * @memberof Customer\n */\n distributorId?: number | null;\n /**\n * \n * @type {Customer}\n * @memberof Customer\n */\n distributor?: Customer;\n}\n/**\n * \n * @export\n * @enum {string}\n */\nexport enum CustomerCategory {\n Direct = 'Direct',\n Distributor = 'Distributor',\n Indirect = 'Indirect',\n Other = 'Other'\n}\n\n/**\n * \n * @export\n * @interface CustomerDTO\n */\nexport interface CustomerDTO {\n /**\n * \n * @type {number}\n * @memberof CustomerDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof CustomerDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof CustomerDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof CustomerDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof CustomerDTO\n */\n soldTo?: string | null;\n /**\n * \n * @type {Address}\n * @memberof CustomerDTO\n */\n address?: Address;\n /**\n * \n * @type {ContactInfo}\n * @memberof CustomerDTO\n */\n contact?: ContactInfo;\n /**\n * \n * @type {CustomerType}\n * @memberof CustomerDTO\n */\n type?: CustomerType;\n /**\n * \n * @type {CustomerCategory}\n * @memberof CustomerDTO\n */\n category?: CustomerCategory;\n /**\n * \n * @type {number}\n * @memberof CustomerDTO\n */\n distributorId?: number | null;\n /**\n * \n * @type {DistributorDTO}\n * @memberof CustomerDTO\n */\n distributor?: DistributorDTO;\n}\n/**\n * The type/role a user can have.\n * @export\n * @enum {string}\n */\nexport enum CustomerType {\n Free = 'Free',\n Premium = 'Premium'\n}\n\n/**\n * \n * @export\n * @interface DashboardDateRange\n */\nexport interface DashboardDateRange {\n /**\n * \n * @type {string}\n * @memberof DashboardDateRange\n */\n dateStart?: string;\n /**\n * \n * @type {string}\n * @memberof DashboardDateRange\n */\n dateEnd?: string;\n}\n/**\n * \n * @export\n * @interface DashboardFalsePositives\n */\nexport interface DashboardFalsePositives {\n /**\n * \n * @type {Array}\n * @memberof DashboardFalsePositives\n */\n timeOfDay?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof DashboardFalsePositives\n */\n sites?: Array | null;\n}\n/**\n * \n * @export\n * @interface DashboardKeyStatistics\n */\nexport interface DashboardKeyStatistics {\n /**\n * \n * @type {AmountInt}\n * @memberof DashboardKeyStatistics\n */\n total?: AmountInt;\n /**\n * \n * @type {AmountInt}\n * @memberof DashboardKeyStatistics\n */\n negative?: AmountInt;\n /**\n * \n * @type {AmountInt}\n * @memberof DashboardKeyStatistics\n */\n positive?: AmountInt;\n /**\n * \n * @type {AmountDouble}\n * @memberof DashboardKeyStatistics\n */\n positiveRatio?: AmountDouble;\n}\n/**\n * \n * @export\n * @interface DashboardMarker\n */\nexport interface DashboardMarker {\n /**\n * \n * @type {number}\n * @memberof DashboardMarker\n */\n id?: number;\n /**\n * \n * @type {TestResult}\n * @memberof DashboardMarker\n */\n result?: TestResult;\n /**\n * \n * @type {string}\n * @memberof DashboardMarker\n */\n route?: string | null;\n /**\n * \n * @type {string}\n * @memberof DashboardMarker\n */\n testDate?: string;\n /**\n * \n * @type {Wgs84Point}\n * @memberof DashboardMarker\n */\n location?: Wgs84Point;\n}\n/**\n * \n * @export\n * @interface DashboardOperator\n */\nexport interface DashboardOperator {\n /**\n * \n * @type {number}\n * @memberof DashboardOperator\n */\n testCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardOperator\n */\n positiveTestCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardOperator\n */\n positiveControlCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardOperator\n */\n falsePositiveCount?: number;\n /**\n * \n * @type {string}\n * @memberof DashboardOperator\n */\n operatorId?: string | null;\n}\n/**\n * \n * @export\n * @interface DashboardSite\n */\nexport interface DashboardSite {\n /**\n * \n * @type {string}\n * @memberof DashboardSite\n */\n siteName?: string | null;\n /**\n * \n * @type {number}\n * @memberof DashboardSite\n */\n siteId?: number;\n /**\n * \n * @type {Array}\n * @memberof DashboardSite\n */\n testCount?: Array | null;\n}\n/**\n * \n * @export\n * @interface DashboardSubstances\n */\nexport interface DashboardSubstances {\n /**\n * \n * @type {Array}\n * @memberof DashboardSubstances\n */\n substances?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof DashboardSubstances\n */\n negativeCount?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof DashboardSubstances\n */\n positiveCount?: Array | null;\n}\n/**\n * \n * @export\n * @interface DashboardTestResults\n */\nexport interface DashboardTestResults {\n /**\n * \n * @type {Array}\n * @memberof DashboardTestResults\n */\n dates?: Array | null;\n /**\n * \n * @type {DashboardType}\n * @memberof DashboardTestResults\n */\n type?: DashboardType;\n /**\n * \n * @type {Array}\n * @memberof DashboardTestResults\n */\n negativeCount?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof DashboardTestResults\n */\n positiveCount?: Array | null;\n}\n/**\n * \n * @export\n * @interface DashboardTestsPerformed\n */\nexport interface DashboardTestsPerformed {\n /**\n * \n * @type {Array}\n * @memberof DashboardTestsPerformed\n */\n dates?: Array | null;\n /**\n * \n * @type {DashboardType}\n * @memberof DashboardTestsPerformed\n */\n type?: DashboardType;\n /**\n * \n * @type {Array}\n * @memberof DashboardTestsPerformed\n */\n sites?: Array | null;\n}\n/**\n * DashboardType\n * @export\n * @enum {string}\n */\nexport enum DashboardType {\n Day = 'Day',\n Range = 'Range',\n Month = 'Month'\n}\n\n/**\n * \n * @export\n * @interface DashboardUser\n */\nexport interface DashboardUser {\n /**\n * \n * @type {number}\n * @memberof DashboardUser\n */\n testCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardUser\n */\n positiveTestCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardUser\n */\n positiveControlCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardUser\n */\n falsePositiveCount?: number;\n /**\n * \n * @type {number}\n * @memberof DashboardUser\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof DashboardUser\n */\n name?: string | null;\n /**\n * \n * @type {boolean}\n * @memberof DashboardUser\n */\n sharedUser?: boolean | null;\n /**\n * \n * @type {Array}\n * @memberof DashboardUser\n */\n operators?: Array | null;\n}\n/**\n * \n * @export\n * @interface DesktopVersion\n */\nexport interface DesktopVersion {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof DesktopVersion\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof DesktopVersion\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof DesktopVersion\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof DesktopVersion\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof DesktopVersion\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DesktopVersion\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof DesktopVersion\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof DesktopVersion\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DesktopVersion\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof DesktopVersion\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DesktopVersion\n */\n deletedBy?: User;\n /**\n * \n * @type {number}\n * @memberof DesktopVersion\n */\n versionNumber: number;\n /**\n * An optional descriptive name for the attachment.\n * @type {string}\n * @memberof DesktopVersion\n */\n name?: string | null;\n /**\n * The path to the attachment\\'s data relative to its Azure Blob container.\n * @type {string}\n * @memberof DesktopVersion\n */\n path?: string | null;\n /**\n * The URL where the attachment can be downloaded.\n * @type {string}\n * @memberof DesktopVersion\n */\n url?: string | null;\n}\n/**\n * \n * @export\n * @interface DesktopVersionDTO\n */\nexport interface DesktopVersionDTO {\n /**\n * \n * @type {number}\n * @memberof DesktopVersionDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof DesktopVersionDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof DesktopVersionDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof DesktopVersionDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof DesktopVersionDTO\n */\n versionNumber?: number;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n url?: string | null;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof DesktopVersionDTO\n */\n path?: string | null;\n}\n/**\n * A MilkSafe customer.\n * @export\n * @interface DeviceHealth\n */\nexport interface DeviceHealth {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof DeviceHealth\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof DeviceHealth\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof DeviceHealth\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof DeviceHealth\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof DeviceHealth\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DeviceHealth\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof DeviceHealth\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof DeviceHealth\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DeviceHealth\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof DeviceHealth\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof DeviceHealth\n */\n deletedBy?: User;\n /**\n * Serial number of the reader\n * @type {string}\n * @memberof DeviceHealth\n */\n readerSerialNumber: string;\n /**\n * All the verifications connected to the device\n * @type {Array}\n * @memberof DeviceHealth\n */\n verifications?: Array | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealth\n */\n testSinceLastVerification?: number;\n /**\n * The ID of the site this verification record belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof DeviceHealth\n */\n siteId?: number | null;\n /**\n * \n * @type {Site}\n * @memberof DeviceHealth\n */\n site?: Site;\n /**\n * \n * @type {Customer}\n * @memberof DeviceHealth\n */\n customer?: Customer;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof DeviceHealth\n */\n customerId?: number | null;\n}\n/**\n * \n * @export\n * @interface DeviceHealthDTO\n */\nexport interface DeviceHealthDTO {\n /**\n * \n * @type {number}\n * @memberof DeviceHealthDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthDTO\n */\n readerSerialNumber: string;\n /**\n * \n * @type {Array}\n * @memberof DeviceHealthDTO\n */\n verifications: Array;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthDTO\n */\n testSinceLastVerification: number;\n}\n/**\n * \n * @export\n * @interface DeviceHealthInfoDTO\n */\nexport interface DeviceHealthInfoDTO {\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n site?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n lastVerificationDate?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n softwareVersion?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n latestUser?: string | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthInfoDTO\n */\n testsInLifetime: number;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthInfoDTO\n */\n testsSinceLastVerification: number;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthInfoDTO\n */\n daysSinceLastVerification?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n additionalComments?: string | null;\n /**\n * \n * @type {TemperatureDTO}\n * @memberof DeviceHealthInfoDTO\n */\n temperature?: TemperatureDTO;\n /**\n * \n * @type {Array}\n * @memberof DeviceHealthInfoDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof DeviceHealthInfoDTO\n */\n previousVerifications: Array;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthInfoDTO\n */\n readerSerialNumber: string;\n}\n/**\n * \n * @export\n * @interface DeviceHealthListItemDTO\n */\nexport interface DeviceHealthListItemDTO {\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n readerSerialNumber: string;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n testSinceLastVerification: number;\n /**\n * \n * @type {boolean}\n * @memberof DeviceHealthListItemDTO\n */\n temperatureFailed?: boolean | null;\n /**\n * \n * @type {boolean}\n * @memberof DeviceHealthListItemDTO\n */\n calibrationFailed?: boolean | null;\n /**\n * \n * @type {boolean}\n * @memberof DeviceHealthListItemDTO\n */\n lightIntensityFailed?: boolean | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n testDate?: string | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n customerId?: number | null;\n /**\n * \n * @type {number}\n * @memberof DeviceHealthListItemDTO\n */\n siteId?: number | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthListItemDTO\n */\n siteName?: string | null;\n}\n/**\n * \n * @export\n * @interface DeviceHealthVerificationDTO\n */\nexport interface DeviceHealthVerificationDTO {\n /**\n * \n * @type {number}\n * @memberof DeviceHealthVerificationDTO\n */\n testSinceLastVerification: number;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n site?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n lastVerificationDate?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n softwareVersion?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n latestUser?: string | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n additionalComments?: string | null;\n /**\n * \n * @type {TemperatureDTO}\n * @memberof DeviceHealthVerificationDTO\n */\n temperature?: TemperatureDTO;\n /**\n * \n * @type {Array}\n * @memberof DeviceHealthVerificationDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {string}\n * @memberof DeviceHealthVerificationDTO\n */\n readerSerialNumber: string;\n /**\n * \n * @type {boolean}\n * @memberof DeviceHealthVerificationDTO\n */\n calibrationPassed?: boolean | null;\n /**\n * \n * @type {boolean}\n * @memberof DeviceHealthVerificationDTO\n */\n lineIntensityPassed?: boolean | null;\n}\n/**\n * \n * @export\n * @interface DistributorDTO\n */\nexport interface DistributorDTO {\n /**\n * \n * @type {number}\n * @memberof DistributorDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof DistributorDTO\n */\n name?: string | null;\n}\n/**\n * \n * @export\n * @interface ErrorCodeErrorDTO\n */\nexport interface ErrorCodeErrorDTO {\n /**\n * \n * @type {string}\n * @memberof ErrorCodeErrorDTO\n */\n message?: string | null;\n /**\n * \n * @type {string}\n * @memberof ErrorCodeErrorDTO\n */\n propertyName?: string | null;\n /**\n * \n * @type {string}\n * @memberof ErrorCodeErrorDTO\n */\n errorCode?: string | null;\n}\n/**\n * \n * @export\n * @interface FeedbackRequest\n */\nexport interface FeedbackRequest {\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n sender?: string | null;\n /**\n * \n * @type {number}\n * @memberof FeedbackRequest\n */\n userId?: number | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n topic?: string | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n feedback?: string | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n device?: string | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n platform?: string | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n os?: string | null;\n /**\n * \n * @type {string}\n * @memberof FeedbackRequest\n */\n version?: string | null;\n}\n/**\n * An instance of a specific test type.\n * @export\n * @interface GroupedTestRecord\n */\nexport interface GroupedTestRecord {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof GroupedTestRecord\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof GroupedTestRecord\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof GroupedTestRecord\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof GroupedTestRecord\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof GroupedTestRecord\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof GroupedTestRecord\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof GroupedTestRecord\n */\n deletedBy?: User;\n /**\n * \n * @type {Customer}\n * @memberof GroupedTestRecord\n */\n customer?: Customer;\n /**\n * The ID of the customer this test grouping belongs to.\n * @type {number}\n * @memberof GroupedTestRecord\n */\n customerId?: number | null;\n /**\n * \n * @type {GroupedTestResult}\n * @memberof GroupedTestRecord\n */\n result?: GroupedTestResult;\n /**\n * The ID of the site this test grouping belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof GroupedTestRecord\n */\n siteId?: number;\n /**\n * \n * @type {Site}\n * @memberof GroupedTestRecord\n */\n site?: Site;\n /**\n * Test records within the group\n * @type {Array}\n * @memberof GroupedTestRecord\n */\n testRecords?: Array | null;\n /**\n * The date the test was performed.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n testDate?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecord\n */\n testDateOffset?: string | null;\n /**\n * \n * @type {User}\n * @memberof GroupedTestRecord\n */\n user?: User;\n /**\n * Optionally an identifier for the route this test was made on.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n route?: string | null;\n /**\n * Optionally an identifier for the operator for this test grouping.\n * @type {string}\n * @memberof GroupedTestRecord\n */\n operatorId?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecord\n */\n appVersion?: string | null;\n}\n/**\n * \n * @export\n * @interface GroupedTestRecordDTO\n */\nexport interface GroupedTestRecordDTO {\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {Array}\n * @memberof GroupedTestRecordDTO\n */\n testRecords?: Array | null;\n /**\n * \n * @type {GroupedTestResult}\n * @memberof GroupedTestRecordDTO\n */\n result?: GroupedTestResult;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n testDate?: string | null;\n /**\n * \n * @type {TestRecordSiteDTO}\n * @memberof GroupedTestRecordDTO\n */\n site?: TestRecordSiteDTO;\n /**\n * \n * @type {TestRecordCustomerDTO}\n * @memberof GroupedTestRecordDTO\n */\n customer?: TestRecordCustomerDTO;\n /**\n * \n * @type {TestRecordUserDTO}\n * @memberof GroupedTestRecordDTO\n */\n user?: TestRecordUserDTO;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n route?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n operatorId?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordDTO\n */\n appVersion?: string | null;\n}\n/**\n * \n * @export\n * @interface GroupedTestRecordTestRecordDTO\n */\nexport interface GroupedTestRecordTestRecordDTO {\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n testDate?: string;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n readerSerialNumber?: string | null;\n /**\n * \n * @type {Wgs84Point}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n location?: Wgs84Point;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n route?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n result?: TestResult;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n readerData?: string | null;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {TestRecordTestTypeDTO}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n testType?: TestRecordTestTypeDTO;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n operatorId?: string | null;\n /**\n * \n * @type {Array}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n attachments?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {Annotation}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n annotation?: Annotation;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n manufacturingDate?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n batchNumber?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n rawQR?: string | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n cassetteId?: string | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {number}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n groupedTestRecordId?: number | null;\n /**\n * \n * @type {string}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n appVersion?: string | null;\n /**\n * \n * @type {ReaderType}\n * @memberof GroupedTestRecordTestRecordDTO\n */\n readerType?: ReaderType;\n}\n/**\n * The result/outcome of a test flow. Negative means \\\"passed\\\", and positive \\\"rejected\\\".\n * @export\n * @enum {string}\n */\nexport enum GroupedTestResult {\n Negative = 'Negative',\n Inconclusive = 'Inconclusive',\n Positive = 'Positive'\n}\n\n/**\n * \n * @export\n * @interface HttpHeader\n */\nexport interface HttpHeader {\n /**\n * \n * @type {string}\n * @memberof HttpHeader\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof HttpHeader\n */\n value?: string | null;\n}\n/**\n * The judge type used to determine the result of a test.\n * @export\n * @enum {string}\n */\nexport enum JudgeType {\n Height = 'Height',\n Area = 'Area'\n}\n\n/**\n * The judging direction used to determine the result for a test.\n * @export\n * @enum {string}\n */\nexport enum JudgingDirection {\n ReverseJudgement = 'ReverseJudgement',\n PositiveJudgement = 'PositiveJudgement'\n}\n\n/**\n * \n * @export\n * @interface ListWrapperCustomerDTO\n */\nexport interface ListWrapperCustomerDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperCustomerDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperCustomerDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperDesktopVersionDTO\n */\nexport interface ListWrapperDesktopVersionDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperDesktopVersionDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperDesktopVersionDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperDeviceHealthListItemDTO\n */\nexport interface ListWrapperDeviceHealthListItemDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperDeviceHealthListItemDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperDeviceHealthListItemDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperGroupedTestRecordDTO\n */\nexport interface ListWrapperGroupedTestRecordDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperGroupedTestRecordDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperGroupedTestRecordDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperSiteDTO\n */\nexport interface ListWrapperSiteDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperSiteDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperSiteDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperSubscriptionDTO\n */\nexport interface ListWrapperSubscriptionDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperSubscriptionDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperSubscriptionDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperSubstanceDTO\n */\nexport interface ListWrapperSubstanceDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperSubstanceDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperSubstanceDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperTermsDTO\n */\nexport interface ListWrapperTermsDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperTermsDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperTermsDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperTestRecordDTO\n */\nexport interface ListWrapperTestRecordDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperTestRecordDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperTestRecordDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperTestTypeDTO\n */\nexport interface ListWrapperTestTypeDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperTestTypeDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperTestTypeDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface ListWrapperUserDTO\n */\nexport interface ListWrapperUserDTO {\n /**\n * \n * @type {Array}\n * @memberof ListWrapperUserDTO\n */\n data?: Array | null;\n /**\n * \n * @type {MetaData}\n * @memberof ListWrapperUserDTO\n */\n meta?: MetaData;\n}\n/**\n * \n * @export\n * @interface MetaData\n */\nexport interface MetaData {\n /**\n * \n * @type {number}\n * @memberof MetaData\n */\n total?: number;\n /**\n * \n * @type {number}\n * @memberof MetaData\n */\n perPage?: number;\n /**\n * \n * @type {number}\n * @memberof MetaData\n */\n currentPage?: number;\n /**\n * \n * @type {number}\n * @memberof MetaData\n */\n totalPages?: number;\n /**\n * \n * @type {number}\n * @memberof MetaData\n */\n recordsInDataset?: number;\n}\n/**\n * \n * @export\n * @interface NameIdItem\n */\nexport interface NameIdItem {\n /**\n * \n * @type {number}\n * @memberof NameIdItem\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof NameIdItem\n */\n name?: string | null;\n}\n/**\n * \n * @export\n * @interface ProblemDetails\n */\nexport interface ProblemDetails {\n [key: string]: any | any;\n\n /**\n * \n * @type {string}\n * @memberof ProblemDetails\n */\n type?: string | null;\n /**\n * \n * @type {string}\n * @memberof ProblemDetails\n */\n title?: string | null;\n /**\n * \n * @type {number}\n * @memberof ProblemDetails\n */\n status?: number | null;\n /**\n * \n * @type {string}\n * @memberof ProblemDetails\n */\n detail?: string | null;\n /**\n * \n * @type {string}\n * @memberof ProblemDetails\n */\n instance?: string | null;\n}\n/**\n * \n * @export\n * @enum {string}\n */\nexport enum ReaderType {\n TruckReader = 'TruckReader',\n PortableReader = 'PortableReader',\n DesktopReader = 'DesktopReader',\n Unknown = 'Unknown'\n}\n\n/**\n * \n * @export\n * @enum {string}\n */\nexport enum RecordType {\n TestRecords = 'TestRecords',\n ControlRecords = 'ControlRecords'\n}\n\n/**\n * \n * @export\n * @interface RedeemPasswordRequest\n */\nexport interface RedeemPasswordRequest {\n /**\n * \n * @type {string}\n * @memberof RedeemPasswordRequest\n */\n password?: string | null;\n /**\n * \n * @type {string}\n * @memberof RedeemPasswordRequest\n */\n token?: string | null;\n}\n/**\n * A site is a subdivision under a customer and can have designated site administrators.\n * @export\n * @interface Site\n */\nexport interface Site {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Site\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Site\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Site\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Site\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Site\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Site\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Site\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Site\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Site\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Site\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Site\n */\n deletedBy?: User;\n /**\n * The name of the site.\n * @type {string}\n * @memberof Site\n */\n name: string;\n /**\n * \n * @type {string}\n * @memberof Site\n */\n comment?: string | null;\n /**\n * Optional reference to site entity in SAP.\n * @type {string}\n * @memberof Site\n */\n shipTo?: string | null;\n /**\n * The ID of the customer this site belongs to.\n * @type {number}\n * @memberof Site\n */\n customerId: number;\n /**\n * \n * @type {Customer}\n * @memberof Site\n */\n customer?: Customer;\n /**\n * The test types applicable for this site.\n * @type {Array}\n * @memberof Site\n */\n availableTestTypes?: Array | null;\n /**\n * \n * @type {ContactInfo}\n * @memberof Site\n */\n contact?: ContactInfo;\n /**\n * \n * @type {Address}\n * @memberof Site\n */\n address?: Address;\n /**\n * The site administrators for this site. Customer administrators are not included here.\n * @type {Array}\n * @memberof Site\n */\n subscriptions?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof Site\n */\n users?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof Site\n */\n testRecords?: Array | null;\n /**\n * \n * @type {CustomerType}\n * @memberof Site\n */\n type?: CustomerType;\n /**\n * \n * @type {Wgs84Point}\n * @memberof Site\n */\n location?: Wgs84Point;\n}\n/**\n * \n * @export\n * @interface SiteDTO\n */\nexport interface SiteDTO {\n /**\n * \n * @type {number}\n * @memberof SiteDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof SiteDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof SiteDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof SiteDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n comment?: string | null;\n /**\n * \n * @type {string}\n * @memberof SiteDTO\n */\n shipTo?: string | null;\n /**\n * \n * @type {number}\n * @memberof SiteDTO\n */\n customerId?: number;\n /**\n * \n * @type {Array}\n * @memberof SiteDTO\n */\n availableTestTypes?: Array | null;\n /**\n * \n * @type {ContactInfo}\n * @memberof SiteDTO\n */\n contact?: ContactInfo;\n /**\n * \n * @type {Address}\n * @memberof SiteDTO\n */\n address?: Address;\n /**\n * \n * @type {CustomerType}\n * @memberof SiteDTO\n */\n type?: CustomerType;\n}\n/**\n * \n * @export\n * @interface SiteSubstanceObjectDTO\n */\nexport interface SiteSubstanceObjectDTO {\n /**\n * \n * @type {number}\n * @memberof SiteSubstanceObjectDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SiteSubstanceObjectDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof SiteSubstanceObjectDTO\n */\n description?: string | null;\n}\n/**\n * \n * @export\n * @interface SiteSubstancesDTO\n */\nexport interface SiteSubstancesDTO {\n /**\n * \n * @type {number}\n * @memberof SiteSubstancesDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {number}\n * @memberof SiteSubstancesDTO\n */\n readerIndex?: number;\n /**\n * \n * @type {SiteSubstanceObjectDTO}\n * @memberof SiteSubstancesDTO\n */\n substance?: SiteSubstanceObjectDTO;\n}\n/**\n * \n * @export\n * @interface SiteTestSiteDTO\n */\nexport interface SiteTestSiteDTO {\n /**\n * \n * @type {number}\n * @memberof SiteTestSiteDTO\n */\n siteId?: number;\n /**\n * \n * @type {number}\n * @memberof SiteTestSiteDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {SiteTestTypeDTO}\n * @memberof SiteTestSiteDTO\n */\n testType?: SiteTestTypeDTO;\n /**\n * \n * @type {boolean}\n * @memberof SiteTestSiteDTO\n */\n qrActive?: boolean;\n}\n/**\n * A test type available for a site.\n * @export\n * @interface SiteTestType\n */\nexport interface SiteTestType {\n /**\n * The ID of the site.\n * @type {number}\n * @memberof SiteTestType\n */\n siteId: number;\n /**\n * \n * @type {Site}\n * @memberof SiteTestType\n */\n site?: Site;\n /**\n * The ID of the test type.\n * @type {number}\n * @memberof SiteTestType\n */\n testTypeId: number;\n /**\n * \n * @type {TestType}\n * @memberof SiteTestType\n */\n testType?: TestType;\n /**\n * \n * @type {boolean}\n * @memberof SiteTestType\n */\n qrActive?: boolean;\n}\n/**\n * \n * @export\n * @interface SiteTestTypeDTO\n */\nexport interface SiteTestTypeDTO {\n /**\n * \n * @type {number}\n * @memberof SiteTestTypeDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SiteTestTypeDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof SiteTestTypeDTO\n */\n description?: string | null;\n /**\n * \n * @type {number}\n * @memberof SiteTestTypeDTO\n */\n negativeValue?: number;\n /**\n * \n * @type {number}\n * @memberof SiteTestTypeDTO\n */\n positiveValue?: number;\n /**\n * \n * @type {JudgeType}\n * @memberof SiteTestTypeDTO\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof SiteTestTypeDTO\n */\n judgingDirection?: JudgingDirection;\n /**\n * \n * @type {Array}\n * @memberof SiteTestTypeDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof SiteTestTypeDTO\n */\n category?: TestTypeCategory;\n /**\n * \n * @type {string}\n * @memberof SiteTestTypeDTO\n */\n qrIdString?: string | null;\n}\n/**\n * \n * @export\n * @interface Subscription\n */\nexport interface Subscription {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Subscription\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Subscription\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Subscription\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Subscription\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Subscription\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Subscription\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Subscription\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Subscription\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Subscription\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Subscription\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Subscription\n */\n deletedBy?: User;\n /**\n * The ID of the site.\n * @type {number}\n * @memberof Subscription\n */\n siteId: number;\n /**\n * \n * @type {Site}\n * @memberof Subscription\n */\n site?: Site;\n /**\n * \n * @type {string}\n * @memberof Subscription\n */\n email?: string | null;\n}\n/**\n * \n * @export\n * @interface SubscriptionDTO\n */\nexport interface SubscriptionDTO {\n /**\n * \n * @type {number}\n * @memberof SubscriptionDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SubscriptionDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof SubscriptionDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof SubscriptionDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof SubscriptionDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof SubscriptionDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof SubscriptionDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof SubscriptionDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof SubscriptionDTO\n */\n siteId?: number;\n /**\n * \n * @type {SubscriptionSiteDTO}\n * @memberof SubscriptionDTO\n */\n site?: SubscriptionSiteDTO;\n /**\n * \n * @type {string}\n * @memberof SubscriptionDTO\n */\n email?: string | null;\n}\n/**\n * \n * @export\n * @interface SubscriptionSiteDTO\n */\nexport interface SubscriptionSiteDTO {\n /**\n * \n * @type {number}\n * @memberof SubscriptionSiteDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SubscriptionSiteDTO\n */\n name?: string | null;\n}\n/**\n * A substance than can be measured as part of a test type.\n * @export\n * @interface Substance\n */\nexport interface Substance {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Substance\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Substance\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Substance\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Substance\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Substance\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Substance\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Substance\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Substance\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Substance\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Substance\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Substance\n */\n deletedBy?: User;\n /**\n * The name of the substance.\n * @type {string}\n * @memberof Substance\n */\n name?: string | null;\n /**\n * An optional description of the substance.\n * @type {string}\n * @memberof Substance\n */\n description?: string | null;\n /**\n * The test types the substance is part of.\n * @type {Array}\n * @memberof Substance\n */\n testTypes?: Array | null;\n}\n/**\n * \n * @export\n * @interface SubstanceDTO\n */\nexport interface SubstanceDTO {\n /**\n * \n * @type {number}\n * @memberof SubstanceDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof SubstanceDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof SubstanceDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof SubstanceDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof SubstanceDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof SubstanceDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof SubstanceDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof SubstanceDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof SubstanceDTO\n */\n name?: string | null;\n /**\n * \n * @type {Array}\n * @memberof SubstanceDTO\n */\n testTypes?: Array | null;\n}\n/**\n * \n * @export\n * @interface SubstanceInfoDTO\n */\nexport interface SubstanceInfoDTO {\n /**\n * \n * @type {number}\n * @memberof SubstanceInfoDTO\n */\n ratioMeasured: number;\n /**\n * \n * @type {boolean}\n * @memberof SubstanceInfoDTO\n */\n ratioMeasuredPassed: boolean;\n /**\n * \n * @type {number}\n * @memberof SubstanceInfoDTO\n */\n lineIntensity?: number | null;\n /**\n * \n * @type {boolean}\n * @memberof SubstanceInfoDTO\n */\n lineIntensityPassed?: boolean | null;\n}\n/**\n * \n * @export\n * @interface SubstanceOverride\n */\nexport interface SubstanceOverride {\n /**\n * Negative threshold override, this will override the value defined in the test type\n * @type {number}\n * @memberof SubstanceOverride\n */\n negativeValue?: number;\n /**\n * Positive threshold override, this will override the value defined in the test type\n * @type {number}\n * @memberof SubstanceOverride\n */\n positiveValue?: number;\n}\n/**\n * \n * @export\n * @interface SubstanceOverrideDTO\n */\nexport interface SubstanceOverrideDTO {\n /**\n * Negative threshold override, this will override the value defined in the testtype\n * @type {number}\n * @memberof SubstanceOverrideDTO\n */\n negativeValue?: number;\n /**\n * Positive threshold override, this will override the value defined in the testtype\n * @type {number}\n * @memberof SubstanceOverrideDTO\n */\n positiveValue?: number;\n}\n/**\n * \n * @export\n * @interface SubstanceTestTypeDTO\n */\nexport interface SubstanceTestTypeDTO {\n /**\n * \n * @type {number}\n * @memberof SubstanceTestTypeDTO\n */\n readerIndex?: number;\n /**\n * \n * @type {number}\n * @memberof SubstanceTestTypeDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {number}\n * @memberof SubstanceTestTypeDTO\n */\n substanceId?: number;\n}\n/**\n * \n * @export\n * @interface TemperatureDTO\n */\nexport interface TemperatureDTO {\n /**\n * \n * @type {number}\n * @memberof TemperatureDTO\n */\n actual: number;\n /**\n * \n * @type {number}\n * @memberof TemperatureDTO\n */\n expected: number;\n /**\n * \n * @type {boolean}\n * @memberof TemperatureDTO\n */\n passed: boolean;\n}\n/**\n * \n * @export\n * @interface Terms\n */\nexport interface Terms {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Terms\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Terms\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Terms\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Terms\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Terms\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Terms\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Terms\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Terms\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Terms\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Terms\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Terms\n */\n deletedBy?: User;\n /**\n * The users that have accepted this terms\n * @type {Array}\n * @memberof Terms\n */\n acceptedBy?: Array | null;\n /**\n * The terms for that are being presented to the user\n * @type {string}\n * @memberof Terms\n */\n termsText?: string | null;\n /**\n * Boolean indicating if it has been released\n * @type {boolean}\n * @memberof Terms\n */\n released?: boolean;\n}\n/**\n * \n * @export\n * @interface TermsDTO\n */\nexport interface TermsDTO {\n /**\n * \n * @type {number}\n * @memberof TermsDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TermsDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof TermsDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof TermsDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof TermsDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TermsDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof TermsDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TermsDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TermsDTO\n */\n termsText?: string | null;\n /**\n * \n * @type {boolean}\n * @memberof TermsDTO\n */\n released?: boolean;\n}\n/**\n * \n * @export\n * @interface TermsUser\n */\nexport interface TermsUser {\n /**\n * The ID of the user.\n * @type {number}\n * @memberof TermsUser\n */\n userId: number;\n /**\n * \n * @type {User}\n * @memberof TermsUser\n */\n user?: User;\n /**\n * The ID of the site.\n * @type {number}\n * @memberof TermsUser\n */\n termsId: number;\n /**\n * \n * @type {Terms}\n * @memberof TermsUser\n */\n terms?: Terms;\n}\n/**\n * Test device type\n * @export\n * @enum {string}\n */\nexport enum TestDeviceType {\n Portable = 'Portable',\n Desktop = 'Desktop',\n TruckReader = 'TruckReader'\n}\n\n/**\n * An instance of a specific test type.\n * @export\n * @interface TestRecord\n */\nexport interface TestRecord {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof TestRecord\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof TestRecord\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof TestRecord\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof TestRecord\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof TestRecord\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecord\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof TestRecord\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof TestRecord\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecord\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof TestRecord\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecord\n */\n deletedBy?: User;\n /**\n * \n * @type {Customer}\n * @memberof TestRecord\n */\n customer?: Customer;\n /**\n * The date the test was performed.\n * @type {string}\n * @memberof TestRecord\n */\n testDate?: string;\n /**\n * \n * @type {string}\n * @memberof TestRecord\n */\n testDateOffset?: string | null;\n /**\n * Optionally the serial number of the reader used for the test.\n * @type {string}\n * @memberof TestRecord\n */\n readerSerialNumber?: string | null;\n /**\n * \n * @type {Wgs84Point}\n * @memberof TestRecord\n */\n location?: Wgs84Point;\n /**\n * Optionally an identifier for the route this test was made on.\n * @type {string}\n * @memberof TestRecord\n */\n route?: string | null;\n /**\n * Optional comments about this test record.\n * @type {string}\n * @memberof TestRecord\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof TestRecord\n */\n result?: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this test result.\n * @type {string}\n * @memberof TestRecord\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof TestRecord\n */\n testTypeId?: number;\n /**\n * \n * @type {TestType}\n * @memberof TestRecord\n */\n testType?: TestType;\n /**\n * The ID of the user who performed the test.\n * @type {number}\n * @memberof TestRecord\n */\n userId?: number;\n /**\n * \n * @type {User}\n * @memberof TestRecord\n */\n user?: User;\n /**\n * \n * @type {string}\n * @memberof TestRecord\n */\n operatorId?: string | null;\n /**\n * The ID of the site this test record belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof TestRecord\n */\n siteId?: number;\n /**\n * \n * @type {Site}\n * @memberof TestRecord\n */\n site?: Site;\n /**\n * Optional attachments in form of images relevant to this test record.\n * @type {Array}\n * @memberof TestRecord\n */\n attachments?: Array | null;\n /**\n * The levels of the individual substances in this test.\n * @type {Array}\n * @memberof TestRecord\n */\n substances?: Array | null;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof TestRecord\n */\n customerId?: number | null;\n /**\n * \n * @type {Annotation}\n * @memberof TestRecord\n */\n annotation?: Annotation;\n /**\n * Manufacturing Date\n * @type {string}\n * @memberof TestRecord\n */\n manufacturingDate?: string | null;\n /**\n * Batch Number\n * @type {string}\n * @memberof TestRecord\n */\n batchNumber?: string | null;\n /**\n * The raw qr code\n * @type {string}\n * @memberof TestRecord\n */\n rawQR?: string | null;\n /**\n * Cartridge Id - the id scanned from QR\n * @type {string}\n * @memberof TestRecord\n */\n cassetteId?: string | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof TestRecord\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {number}\n * @memberof TestRecord\n */\n groupedTestRecordId?: number | null;\n /**\n * \n * @type {GroupedTestRecord}\n * @memberof TestRecord\n */\n groupedTestRecord?: GroupedTestRecord;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof TestRecord\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * \n * @type {string}\n * @memberof TestRecord\n */\n appVersion?: string | null;\n}\n/**\n * An attachment to a test record. Currently only images are supported.\n * @export\n * @interface TestRecordAttachment\n */\nexport interface TestRecordAttachment {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof TestRecordAttachment\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecordAttachment\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecordAttachment\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestRecordAttachment\n */\n deletedBy?: User;\n /**\n * The ID of the test record the attachment belongs to.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n testRecordId?: number;\n /**\n * \n * @type {TestRecord}\n * @memberof TestRecordAttachment\n */\n testRecord?: TestRecord;\n /**\n * An optional descriptive name for the attachment.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n name?: string | null;\n /**\n * Optional comments about the attachment.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n comments?: string | null;\n /**\n * \n * @type {AttachmentType}\n * @memberof TestRecordAttachment\n */\n attachmentType?: AttachmentType;\n /**\n * The path to the attachment\\'s data relative to its Azure Blob container.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n path?: string | null;\n /**\n * The URL where the attachment can be downloaded.\n * @type {string}\n * @memberof TestRecordAttachment\n */\n url?: string | null;\n /**\n * The ID of the customer this attachment\\'s test record belongs to. This is automatically filled by the system.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n customerId?: number | null;\n /**\n * \n * @type {Customer}\n * @memberof TestRecordAttachment\n */\n customer?: Customer;\n /**\n * The ID of the site this attachment\\'s test record belongs to. This is automatically filled by the system.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n siteId?: number | null;\n /**\n * \n * @type {Site}\n * @memberof TestRecordAttachment\n */\n site?: Site;\n /**\n * The ID of the user who performed the test this attachment belongs to. This is automatically filled by the system.\n * @type {number}\n * @memberof TestRecordAttachment\n */\n testRecordUserId?: number | null;\n}\n/**\n * \n * @export\n * @interface TestRecordAttachmentDTO\n */\nexport interface TestRecordAttachmentDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n testRecordId?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n comments?: string | null;\n /**\n * \n * @type {AttachmentType}\n * @memberof TestRecordAttachmentDTO\n */\n attachmentType?: AttachmentType;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n path?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordAttachmentDTO\n */\n url?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n customerId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n siteId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordAttachmentDTO\n */\n testRecordUserId?: number | null;\n}\n/**\n * \n * @export\n * @interface TestRecordCustomerDTO\n */\nexport interface TestRecordCustomerDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordCustomerDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordCustomerDTO\n */\n name?: string | null;\n /**\n * \n * @type {Address}\n * @memberof TestRecordCustomerDTO\n */\n address?: Address;\n}\n/**\n * \n * @export\n * @interface TestRecordDTO\n */\nexport interface TestRecordDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n testDate?: string;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n readerSerialNumber?: string | null;\n /**\n * \n * @type {Wgs84Point}\n * @memberof TestRecordDTO\n */\n location?: Wgs84Point;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n route?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof TestRecordDTO\n */\n result?: TestResult;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n readerData?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {TestRecordTestTypeDTO}\n * @memberof TestRecordDTO\n */\n testType?: TestRecordTestTypeDTO;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n userId?: number;\n /**\n * \n * @type {TestRecordUserDTO}\n * @memberof TestRecordDTO\n */\n user?: TestRecordUserDTO;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n operatorId?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n siteId?: number;\n /**\n * \n * @type {TestRecordSiteDTO}\n * @memberof TestRecordDTO\n */\n site?: TestRecordSiteDTO;\n /**\n * \n * @type {Array}\n * @memberof TestRecordDTO\n */\n attachments?: Array | null;\n /**\n * \n * @type {Array}\n * @memberof TestRecordDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n customerId?: number | null;\n /**\n * \n * @type {TestRecordCustomerDTO}\n * @memberof TestRecordDTO\n */\n customer?: TestRecordCustomerDTO;\n /**\n * \n * @type {Annotation}\n * @memberof TestRecordDTO\n */\n annotation?: Annotation;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n manufacturingDate?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n batchNumber?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n rawQR?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n cassetteId?: string | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof TestRecordDTO\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {number}\n * @memberof TestRecordDTO\n */\n groupedTestRecordId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordDTO\n */\n appVersion?: string | null;\n /**\n * \n * @type {ReaderType}\n * @memberof TestRecordDTO\n */\n readerType?: ReaderType;\n}\n/**\n * \n * @export\n * @interface TestRecordSiteDTO\n */\nexport interface TestRecordSiteDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordSiteDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordSiteDTO\n */\n name?: string | null;\n /**\n * \n * @type {Address}\n * @memberof TestRecordSiteDTO\n */\n address?: Address;\n /**\n * \n * @type {number}\n * @memberof TestRecordSiteDTO\n */\n customerId?: number;\n}\n/**\n * A measurement of a substance in a test record.\n * @export\n * @interface TestRecordSubstance\n */\nexport interface TestRecordSubstance {\n /**\n * The ID of the test record.\n * @type {number}\n * @memberof TestRecordSubstance\n */\n testRecordId?: number;\n /**\n * \n * @type {TestRecord}\n * @memberof TestRecordSubstance\n */\n testRecord?: TestRecord;\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof TestRecordSubstance\n */\n substanceId?: number;\n /**\n * \n * @type {Substance}\n * @memberof TestRecordSubstance\n */\n substance?: Substance;\n /**\n * The level measured for this substance in the test.\n * @type {number}\n * @memberof TestRecordSubstance\n */\n level?: number;\n /**\n * \n * @type {TestResult}\n * @memberof TestRecordSubstance\n */\n result?: TestResult;\n /**\n * Optional information that points to the data about the measurement of this particular substance in the raw test result.\n * @type {string}\n * @memberof TestRecordSubstance\n */\n readerResultReference?: string | null;\n}\n/**\n * \n * @export\n * @interface TestRecordSubstanceDTO\n */\nexport interface TestRecordSubstanceDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordSubstanceDTO\n */\n testRecordId?: number;\n /**\n * \n * @type {number}\n * @memberof TestRecordSubstanceDTO\n */\n substanceId?: number;\n /**\n * \n * @type {TestRecordSubstanceObjectDTO}\n * @memberof TestRecordSubstanceDTO\n */\n substance?: TestRecordSubstanceObjectDTO;\n /**\n * \n * @type {number}\n * @memberof TestRecordSubstanceDTO\n */\n level?: number;\n /**\n * \n * @type {TestResult}\n * @memberof TestRecordSubstanceDTO\n */\n result?: TestResult;\n /**\n * \n * @type {string}\n * @memberof TestRecordSubstanceDTO\n */\n readerResultReference?: string | null;\n}\n/**\n * \n * @export\n * @interface TestRecordSubstanceObjectDTO\n */\nexport interface TestRecordSubstanceObjectDTO {\n /**\n * \n * @type {string}\n * @memberof TestRecordSubstanceObjectDTO\n */\n name?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordSubstanceObjectDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordSubstanceObjectDTO\n */\n description?: string | null;\n}\n/**\n * A test record temperature used only in verification\n * @export\n * @interface TestRecordTemperatureVerification\n */\nexport interface TestRecordTemperatureVerification {\n /**\n * The measured temperature\n * @type {number}\n * @memberof TestRecordTemperatureVerification\n */\n measuredTemperature?: number;\n /**\n * The temperature from device reading\n * @type {number}\n * @memberof TestRecordTemperatureVerification\n */\n deviceTemperature?: number;\n}\n/**\n * \n * @export\n * @interface TestRecordTestTypeDTO\n */\nexport interface TestRecordTestTypeDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordTestTypeDTO\n */\n description?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n negativeValue?: number;\n /**\n * \n * @type {number}\n * @memberof TestRecordTestTypeDTO\n */\n positiveValue?: number;\n /**\n * \n * @type {JudgeType}\n * @memberof TestRecordTestTypeDTO\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof TestRecordTestTypeDTO\n */\n judgingDirection?: JudgingDirection;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof TestRecordTestTypeDTO\n */\n category?: TestTypeCategory;\n}\n/**\n * \n * @export\n * @interface TestRecordUserDTO\n */\nexport interface TestRecordUserDTO {\n /**\n * \n * @type {number}\n * @memberof TestRecordUserDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestRecordUserDTO\n */\n username?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordUserDTO\n */\n firstName?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestRecordUserDTO\n */\n lastName?: string | null;\n}\n/**\n * The result/outcome of a test. Negative means \\\"passed\\\", and positive \\\"rejected\\\".\n * @export\n * @enum {string}\n */\nexport enum TestResult {\n Negative = 'Negative',\n WeakPositive = 'WeakPositive',\n Positive = 'Positive'\n}\n\n/**\n * A type of test comprising specific substances and judging policies as defined by the readers\\' firmware.\n * @export\n * @interface TestType\n */\nexport interface TestType {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof TestType\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof TestType\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof TestType\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof TestType\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof TestType\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestType\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof TestType\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof TestType\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestType\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof TestType\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof TestType\n */\n deletedBy?: User;\n /**\n * The name of the test type.\n * @type {string}\n * @memberof TestType\n */\n name: string;\n /**\n * An optional description of the test type.\n * @type {string}\n * @memberof TestType\n */\n description?: string | null;\n /**\n * The test records (instances) of this test type.\n * @type {Array}\n * @memberof TestType\n */\n testRecords?: Array | null;\n /**\n * Negative threshold as part of the judging policy. Values between this and the positive value are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof TestType\n */\n negativeValue?: number;\n /**\n * Positive threshold as part of the judging policy. Values between the negative value and this are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof TestType\n */\n positiveValue?: number;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof TestType\n */\n category?: TestTypeCategory;\n /**\n * \n * @type {JudgeType}\n * @memberof TestType\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof TestType\n */\n judgingDirection?: JudgingDirection;\n /**\n * The substances measured with this test type.\n * @type {Array}\n * @memberof TestType\n */\n substances?: Array | null;\n /**\n * An id to help identify what test this is.\n * @type {string}\n * @memberof TestType\n */\n qrIdString?: string | null;\n /**\n * Nullable temperature. This is used for some test to determine settings.\n * @type {number}\n * @memberof TestType\n */\n temperature?: number | null;\n /**\n * Nullable incubation time. This is used for some test to determine settings.\n * @type {number}\n * @memberof TestType\n */\n incubationTime?: number | null;\n}\n/**\n * The category of the test. This is for identifying the type of test.\n * @export\n * @enum {string}\n */\nexport enum TestTypeCategory {\n Strip = 'Strip',\n Cassette = 'Cassette'\n}\n\n/**\n * \n * @export\n * @interface TestTypeDTO\n */\nexport interface TestTypeDTO {\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n description?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n negativeValue?: number;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n positiveValue?: number;\n /**\n * \n * @type {JudgeType}\n * @memberof TestTypeDTO\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof TestTypeDTO\n */\n judgingDirection?: JudgingDirection;\n /**\n * \n * @type {Array}\n * @memberof TestTypeDTO\n */\n substances?: Array | null;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof TestTypeDTO\n */\n category?: TestTypeCategory;\n /**\n * \n * @type {string}\n * @memberof TestTypeDTO\n */\n qrIdString?: string | null;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n temperature?: number | null;\n /**\n * \n * @type {number}\n * @memberof TestTypeDTO\n */\n incubationTime?: number | null;\n}\n/**\n * Defines a substance is part of a test type.\n * @export\n * @interface TestTypeSubstance\n */\nexport interface TestTypeSubstance {\n /**\n * The array index for the values for this substance in the data returned by the reader.\n * @type {number}\n * @memberof TestTypeSubstance\n */\n readerIndex?: number;\n /**\n * The ID of the test type.\n * @type {number}\n * @memberof TestTypeSubstance\n */\n testTypeId?: number;\n /**\n * \n * @type {TestType}\n * @memberof TestTypeSubstance\n */\n testType?: TestType;\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof TestTypeSubstance\n */\n substanceId?: number;\n /**\n * \n * @type {SubstanceOverride}\n * @memberof TestTypeSubstance\n */\n substanceOverride?: SubstanceOverride;\n /**\n * \n * @type {Substance}\n * @memberof TestTypeSubstance\n */\n substance?: Substance;\n}\n/**\n * \n * @export\n * @interface TestTypeSubstanceCreateDTO\n */\nexport interface TestTypeSubstanceCreateDTO {\n /**\n * The array index for the values for this substance in the data returned by the reader.\n * @type {number}\n * @memberof TestTypeSubstanceCreateDTO\n */\n readerIndex?: number;\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof TestTypeSubstanceCreateDTO\n */\n substanceId: number;\n /**\n * \n * @type {SubstanceOverride}\n * @memberof TestTypeSubstanceCreateDTO\n */\n substanceOverride?: SubstanceOverride;\n}\n/**\n * \n * @export\n * @interface TestTypeSubstanceDTO\n */\nexport interface TestTypeSubstanceDTO {\n /**\n * \n * @type {number}\n * @memberof TestTypeSubstanceDTO\n */\n readerIndex?: number;\n /**\n * \n * @type {number}\n * @memberof TestTypeSubstanceDTO\n */\n testTypeId?: number;\n /**\n * \n * @type {SubstanceOverrideDTO}\n * @memberof TestTypeSubstanceDTO\n */\n substanceOverride?: SubstanceOverrideDTO;\n /**\n * \n * @type {TestTypeSubstanceObjectDTO}\n * @memberof TestTypeSubstanceDTO\n */\n substance?: TestTypeSubstanceObjectDTO;\n}\n/**\n * \n * @export\n * @interface TestTypeSubstanceObjectDTO\n */\nexport interface TestTypeSubstanceObjectDTO {\n /**\n * \n * @type {number}\n * @memberof TestTypeSubstanceObjectDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof TestTypeSubstanceObjectDTO\n */\n name?: string | null;\n /**\n * \n * @type {string}\n * @memberof TestTypeSubstanceObjectDTO\n */\n description?: string | null;\n}\n/**\n * \n * @export\n * @interface UpdateCustomerRequest\n */\nexport interface UpdateCustomerRequest {\n /**\n * The name of the customer.\n * @type {string}\n * @memberof UpdateCustomerRequest\n */\n name: string;\n /**\n * Optional reference to the customer entity in SAP.\n * @type {string}\n * @memberof UpdateCustomerRequest\n */\n soldTo?: string | null;\n /**\n * \n * @type {Address}\n * @memberof UpdateCustomerRequest\n */\n address?: Address;\n /**\n * \n * @type {ContactInfo}\n * @memberof UpdateCustomerRequest\n */\n contact?: ContactInfo;\n /**\n * \n * @type {CustomerCategory}\n * @memberof UpdateCustomerRequest\n */\n category?: CustomerCategory;\n /**\n * \n * @type {CustomerType}\n * @memberof UpdateCustomerRequest\n */\n type?: CustomerType;\n /**\n * \n * @type {number}\n * @memberof UpdateCustomerRequest\n */\n distributorId?: number | null;\n}\n/**\n * \n * @export\n * @interface UpdatePasswordRequest\n */\nexport interface UpdatePasswordRequest {\n /**\n * \n * @type {string}\n * @memberof UpdatePasswordRequest\n */\n password: string;\n}\n/**\n * A site is a subdivision under a customer and can have designated site administrators.\n * @export\n * @interface UpdateSiteRequest\n */\nexport interface UpdateSiteRequest {\n /**\n * The name of the site.\n * @type {string}\n * @memberof UpdateSiteRequest\n */\n name: string;\n /**\n * Optional reference to site entity in SAP.\n * @type {string}\n * @memberof UpdateSiteRequest\n */\n shipTo?: string | null;\n /**\n * The ID of the customer this site belongs to.\n * @type {number}\n * @memberof UpdateSiteRequest\n */\n customerId: number;\n /**\n * \n * @type {ContactInfo}\n * @memberof UpdateSiteRequest\n */\n contact?: ContactInfo;\n /**\n * \n * @type {Address}\n * @memberof UpdateSiteRequest\n */\n address?: Address;\n /**\n * \n * @type {CustomerType}\n * @memberof UpdateSiteRequest\n */\n type?: CustomerType;\n /**\n * \n * @type {Wgs84Point}\n * @memberof UpdateSiteRequest\n */\n location?: Wgs84Point;\n /**\n * The test types applicable for this site.\n * @type {Array}\n * @memberof UpdateSiteRequest\n */\n availableTestTypes?: Array | null;\n}\n/**\n * \n * @export\n * @interface UpdateSiteRequestTestType\n */\nexport interface UpdateSiteRequestTestType {\n /**\n * The ID of the test type.\n * @type {number}\n * @memberof UpdateSiteRequestTestType\n */\n testTypeId: number;\n /**\n * \n * @type {boolean}\n * @memberof UpdateSiteRequestTestType\n */\n qrActive: boolean;\n}\n/**\n * \n * @export\n * @interface UpdateSubstanceRequest\n */\nexport interface UpdateSubstanceRequest {\n /**\n * The name of the substance.\n * @type {string}\n * @memberof UpdateSubstanceRequest\n */\n name: string;\n}\n/**\n * \n * @export\n * @interface UpdateTestTypeRequest\n */\nexport interface UpdateTestTypeRequest {\n /**\n * \n * @type {string}\n * @memberof UpdateTestTypeRequest\n */\n name: string;\n /**\n * Negative threshold as part of the judging policy. Values between this and the positive value are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof UpdateTestTypeRequest\n */\n negativeValue?: number;\n /**\n * Positive threshold as part of the judging policy. Values between the negative value and this are defined as \\\"weak positive\\\".\n * @type {number}\n * @memberof UpdateTestTypeRequest\n */\n positiveValue?: number;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof UpdateTestTypeRequest\n */\n category?: TestTypeCategory;\n /**\n * \n * @type {JudgeType}\n * @memberof UpdateTestTypeRequest\n */\n judgeType?: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof UpdateTestTypeRequest\n */\n judgingDirection?: JudgingDirection;\n /**\n * The substances measured with this test type.\n * @type {Array}\n * @memberof UpdateTestTypeRequest\n */\n substances?: Array | null;\n /**\n * Nullable temperature. This is used for some test to determine settings.\n * @type {number}\n * @memberof UpdateTestTypeRequest\n */\n temperature?: number | null;\n /**\n * Nullable incubation time. This is used for some test to determine settings.\n * @type {number}\n * @memberof UpdateTestTypeRequest\n */\n incubationTime?: number | null;\n /**\n * An id to help identify what test this is.\n * @type {string}\n * @memberof UpdateTestTypeRequest\n */\n qrIdString?: string | null;\n}\n/**\n * \n * @export\n * @interface UpdateUserRequest\n */\nexport interface UpdateUserRequest {\n /**\n * User identifier in MilkSafe (it does not have to be an email address). Must match Salesforce User ID for customer admin roles.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n username: string;\n /**\n * Optionally the first name of the user if this is a person.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n firstName?: string | null;\n /**\n * Optionally the last name of the user if this is a person.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n lastName?: string | null;\n /**\n * Optionally the user\\'s email.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n email?: string | null;\n /**\n * An optional comment about the user.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n comment?: string | null;\n /**\n * Required for Root and Operator users. Must not be specified for site administrators unless the external user flag is false. If specified when updating existing users their password will be changed to this value.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n password?: string | null;\n /**\n * Optionally the user\\'s phone number.\n * @type {string}\n * @memberof UpdateUserRequest\n */\n phoneNumber?: string | null;\n /**\n * \n * @type {UserType}\n * @memberof UpdateUserRequest\n */\n type?: UserType;\n /**\n * \n * @type {number}\n * @memberof UpdateUserRequest\n */\n customerId?: number | null;\n /**\n * \n * @type {number}\n * @memberof UpdateUserRequest\n */\n siteId?: number | null;\n /**\n * \n * @type {boolean}\n * @memberof UpdateUserRequest\n */\n sharedUser?: boolean | null;\n /**\n * \n * @type {string}\n * @memberof UpdateUserRequest\n */\n primaryOperatorId?: string | null;\n /**\n * The different terms the user has accepted\n * @type {Array}\n * @memberof UpdateUserRequest\n */\n acceptedTerms?: Array | null;\n /**\n * \n * @type {Address}\n * @memberof UpdateUserRequest\n */\n address?: Address;\n}\n/**\n * \n * @export\n * @interface UpdateUserRequestTermsUser\n */\nexport interface UpdateUserRequestTermsUser {\n /**\n * The ID of the user.\n * @type {number}\n * @memberof UpdateUserRequestTermsUser\n */\n userId: number;\n /**\n * The ID of the site.\n * @type {number}\n * @memberof UpdateUserRequestTermsUser\n */\n termsId: number;\n}\n/**\n * \n * @export\n * @interface UploadUrlInfo\n */\nexport interface UploadUrlInfo {\n /**\n * \n * @type {string}\n * @memberof UploadUrlInfo\n */\n url?: string | null;\n /**\n * \n * @type {string}\n * @memberof UploadUrlInfo\n */\n method?: string | null;\n /**\n * \n * @type {Array}\n * @memberof UploadUrlInfo\n */\n headers?: Array | null;\n}\n/**\n * An entity than when authenticated can read an optionally modify data in the system.\n * @export\n * @interface User\n */\nexport interface User {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof User\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof User\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof User\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof User\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof User\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof User\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof User\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof User\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof User\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof User\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof User\n */\n deletedBy?: User;\n /**\n * User identifier in MilkSafe (it does not have to be an email address). Must match Salesforce User ID for customer admin roles.\n * @type {string}\n * @memberof User\n */\n username: string;\n /**\n * Optionally the first name of the user if this is a person.\n * @type {string}\n * @memberof User\n */\n firstName?: string | null;\n /**\n * Optionally the last name of the user if this is a person.\n * @type {string}\n * @memberof User\n */\n lastName?: string | null;\n /**\n * Optionally the user\\'s email.\n * @type {string}\n * @memberof User\n */\n email?: string | null;\n /**\n * An optional comment about the user.\n * @type {string}\n * @memberof User\n */\n comment?: string | null;\n /**\n * Required for Root and Operator users. Must not be specified for site administrators unless the external user flag is false. If specified when updating existing users their password will be changed to this value.\n * @type {string}\n * @memberof User\n */\n password?: string | null;\n /**\n * Optionally the user\\'s phone number.\n * @type {string}\n * @memberof User\n */\n phoneNumber?: string | null;\n /**\n * \n * @type {Address}\n * @memberof User\n */\n address?: Address;\n /**\n * Optionally the user\\'s preferred language.\n * @type {string}\n * @memberof User\n */\n language?: string | null;\n /**\n * \n * @type {UserType}\n * @memberof User\n */\n type?: UserType;\n /**\n * The last time the user used this system.\n * @type {string}\n * @memberof User\n */\n lastActivity?: string | null;\n /**\n * The test records from this user.\n * @type {Array}\n * @memberof User\n */\n testRecords?: Array | null;\n /**\n * The test records from this user.\n * @type {Array}\n * @memberof User\n */\n verifications?: Array | null;\n /**\n * The user is authenticated through an external IdP (e.g., Salesforce). When true a password must not be specified. Usernames are unique regardless of authentication source, so when a user authenticates the preferred_username from the token\\'s claims is used to lookup the corresponding MilkSafe user, and while during this the authentication source is also checked to ensure that external IdPs cannot be used to spoof internal MilkSafe usernames to hijack them.\n * @type {boolean}\n * @memberof User\n */\n externalUser?: boolean;\n /**\n * Can be used to simplify authentication for trusted external services that accesses data for integration with another system (e.g. a LIMS). This property can only be read and set by root admins.\n * @type {string}\n * @memberof User\n */\n apiKey?: string | null;\n /**\n * The different terms the user has accepted\n * @type {Array}\n * @memberof User\n */\n acceptedTerms?: Array | null;\n /**\n * \n * @type {number}\n * @memberof User\n */\n customerId?: number | null;\n /**\n * \n * @type {Customer}\n * @memberof User\n */\n customer?: Customer;\n /**\n * \n * @type {number}\n * @memberof User\n */\n siteId?: number | null;\n /**\n * \n * @type {Site}\n * @memberof User\n */\n site?: Site;\n /**\n * \n * @type {boolean}\n * @memberof User\n */\n sharedUser?: boolean | null;\n /**\n * \n * @type {string}\n * @memberof User\n */\n primaryOperatorId?: string | null;\n /**\n * \n * @type {Array}\n * @memberof User\n */\n knownOperatorIds?: Array | null;\n /**\n * \n * @type {boolean}\n * @memberof User\n */\n tourGuide?: boolean;\n}\n/**\n * \n * @export\n * @interface UserDTO\n */\nexport interface UserDTO {\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n username?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n firstName?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n lastName?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n email?: string | null;\n /**\n * \n * @type {Address}\n * @memberof UserDTO\n */\n address?: Address;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n comment?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n phoneNumber?: string | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n language?: string | null;\n /**\n * \n * @type {UserType}\n * @memberof UserDTO\n */\n type?: UserType;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n lastActivity?: string | null;\n /**\n * \n * @type {boolean}\n * @memberof UserDTO\n */\n externalUser?: boolean;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n apiKey?: string | null;\n /**\n * \n * @type {Array}\n * @memberof UserDTO\n */\n acceptedTerms?: Array | null;\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n customerId?: number | null;\n /**\n * \n * @type {UserNameIdDTO}\n * @memberof UserDTO\n */\n customer?: UserNameIdDTO;\n /**\n * \n * @type {number}\n * @memberof UserDTO\n */\n siteId?: number | null;\n /**\n * \n * @type {UserNameIdDTO}\n * @memberof UserDTO\n */\n site?: UserNameIdDTO;\n /**\n * \n * @type {boolean}\n * @memberof UserDTO\n */\n sharedUser?: boolean | null;\n /**\n * \n * @type {string}\n * @memberof UserDTO\n */\n primaryOperatorId?: string | null;\n /**\n * \n * @type {Array}\n * @memberof UserDTO\n */\n knownOperatorIds?: Array | null;\n}\n/**\n * \n * @export\n * @interface UserInfoResponse\n */\nexport interface UserInfoResponse {\n /**\n * \n * @type {UserDTO}\n * @memberof UserInfoResponse\n */\n currentUser?: UserDTO;\n /**\n * \n * @type {Array}\n * @memberof UserInfoResponse\n */\n permissions?: Array | null;\n}\n/**\n * \n * @export\n * @interface UserNameIdDTO\n */\nexport interface UserNameIdDTO {\n /**\n * \n * @type {number}\n * @memberof UserNameIdDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof UserNameIdDTO\n */\n name?: string | null;\n}\n/**\n * \n * @export\n * @interface UserOperatorId\n */\nexport interface UserOperatorId {\n /**\n * \n * @type {number}\n * @memberof UserOperatorId\n */\n userId?: number;\n /**\n * \n * @type {User}\n * @memberof UserOperatorId\n */\n user?: User;\n /**\n * \n * @type {string}\n * @memberof UserOperatorId\n */\n operatorId: string;\n}\n/**\n * \n * @export\n * @interface UserOperatorIdDTO\n */\nexport interface UserOperatorIdDTO {\n /**\n * \n * @type {number}\n * @memberof UserOperatorIdDTO\n */\n userId?: number;\n /**\n * \n * @type {string}\n * @memberof UserOperatorIdDTO\n */\n operatorId?: string | null;\n}\n/**\n * \n * @export\n * @interface UserTermsDTO\n */\nexport interface UserTermsDTO {\n /**\n * \n * @type {number}\n * @memberof UserTermsDTO\n */\n userId?: number;\n /**\n * \n * @type {number}\n * @memberof UserTermsDTO\n */\n termsId?: number;\n}\n/**\n * The type/role a user can have.\n * @export\n * @enum {string}\n */\nexport enum UserType {\n Root = 'Root',\n CustomerAdmin = 'CustomerAdmin',\n SiteAdmin = 'SiteAdmin',\n Operator = 'Operator',\n Integration = 'Integration'\n}\n\n/**\n * An instance of a specific test type.\n * @export\n * @interface Verification\n */\nexport interface Verification {\n /**\n * System generated, unique identifier\n * @type {number}\n * @memberof Verification\n */\n id?: number;\n /**\n * Optional client generated key to locate this entity from external systems.\n * @type {string}\n * @memberof Verification\n */\n refId?: string | null;\n /**\n * The date this was created.\n * @type {string}\n * @memberof Verification\n */\n created?: string;\n /**\n * The date this was updated last time.\n * @type {string}\n * @memberof Verification\n */\n updated?: string;\n /**\n * The ID of the user who updated this.\n * @type {number}\n * @memberof Verification\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Verification\n */\n updatedBy?: User;\n /**\n * If deleted, the date this was deleted.\n * @type {string}\n * @memberof Verification\n */\n deleted?: string | null;\n /**\n * The ID of the user who created this.\n * @type {number}\n * @memberof Verification\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Verification\n */\n createdBy?: User;\n /**\n * If this is deleted, the ID of the user who deleted.\n * @type {number}\n * @memberof Verification\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {User}\n * @memberof Verification\n */\n deletedBy?: User;\n /**\n * Serial number of the reader\n * @type {string}\n * @memberof Verification\n */\n readerSerialNumber: string;\n /**\n * \n * @type {Customer}\n * @memberof Verification\n */\n customer?: Customer;\n /**\n * The date the verification was performed.\n * @type {string}\n * @memberof Verification\n */\n testDate: string;\n /**\n * \n * @type {string}\n * @memberof Verification\n */\n testDateOffset?: string | null;\n /**\n * Optional comments about this verification record.\n * @type {string}\n * @memberof Verification\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof Verification\n */\n result?: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this verification result.\n * @type {string}\n * @memberof Verification\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof Verification\n */\n testTypeId: number;\n /**\n * \n * @type {TestType}\n * @memberof Verification\n */\n testType?: TestType;\n /**\n * The ID of the user who performed the test.\n * @type {number}\n * @memberof Verification\n */\n userId: number;\n /**\n * \n * @type {User}\n * @memberof Verification\n */\n user?: User;\n /**\n * \n * @type {string}\n * @memberof Verification\n */\n operatorId?: string | null;\n /**\n * The ID of the site this verification record belongs to. If unspecified, this is inferred from the authenticated user.\n * @type {number}\n * @memberof Verification\n */\n siteId?: number;\n /**\n * \n * @type {Site}\n * @memberof Verification\n */\n site?: Site;\n /**\n * The levels of the individual substances in this verification.\n * @type {Array}\n * @memberof Verification\n */\n substances?: Array | null;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof Verification\n */\n customerId?: number | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof Verification\n */\n deviceType?: TestDeviceType;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof Verification\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * Number of tests since last verification, this is calculated on BE\n * @type {number}\n * @memberof Verification\n */\n testsSinceLastVerification?: number;\n /**\n * Software version of the reader\n * @type {string}\n * @memberof Verification\n */\n readerSoftwareVersion?: string | null;\n /**\n * Software version of the app, not used on desktop reader\n * @type {string}\n * @memberof Verification\n */\n appVersion?: string | null;\n /**\n * Id of the device health this verification belongs to\n * @type {number}\n * @memberof Verification\n */\n deviceHealthId?: number;\n /**\n * \n * @type {DeviceHealth}\n * @memberof Verification\n */\n deviceHealth?: DeviceHealth;\n}\n/**\n * An instance of a specific test type.\n * @export\n * @interface VerificationDTO\n */\nexport interface VerificationDTO {\n /**\n * \n * @type {number}\n * @memberof VerificationDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof VerificationDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof VerificationDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof VerificationDTO\n */\n deletedByUserId?: number | null;\n /**\n * Serial number of the reader\n * @type {string}\n * @memberof VerificationDTO\n */\n readerSerialNumber: string;\n /**\n * \n * @type {TestRecordCustomerDTO}\n * @memberof VerificationDTO\n */\n customer?: TestRecordCustomerDTO;\n /**\n * The date the verification was performed.\n * @type {string}\n * @memberof VerificationDTO\n */\n testDate: string;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n testDateOffset: string;\n /**\n * Optional comments about this verification record.\n * @type {string}\n * @memberof VerificationDTO\n */\n comments?: string | null;\n /**\n * \n * @type {TestResult}\n * @memberof VerificationDTO\n */\n result?: TestResult;\n /**\n * Optionally, the raw bits returned by the reader to get this verification result.\n * @type {string}\n * @memberof VerificationDTO\n */\n readerData?: string | null;\n /**\n * The ID for the type of this test.\n * @type {number}\n * @memberof VerificationDTO\n */\n testTypeId: number;\n /**\n * \n * @type {VerificationTestTypeDTO}\n * @memberof VerificationDTO\n */\n testType: VerificationTestTypeDTO;\n /**\n * The ID of the user who performed the test.\n * @type {number}\n * @memberof VerificationDTO\n */\n userId: number;\n /**\n * \n * @type {TestRecordUserDTO}\n * @memberof VerificationDTO\n */\n user: TestRecordUserDTO;\n /**\n * \n * @type {string}\n * @memberof VerificationDTO\n */\n operatorId?: string | null;\n /**\n * The ID of the site this verification record belongs to.\n * @type {number}\n * @memberof VerificationDTO\n */\n siteId: number;\n /**\n * \n * @type {TestRecordSiteDTO}\n * @memberof VerificationDTO\n */\n site?: TestRecordSiteDTO;\n /**\n * The levels of the individual substances in this verification.\n * @type {Array}\n * @memberof VerificationDTO\n */\n substances: Array;\n /**\n * The ID of the customer this test record belongs to.\n * @type {number}\n * @memberof VerificationDTO\n */\n customerId?: number | null;\n /**\n * \n * @type {TestDeviceType}\n * @memberof VerificationDTO\n */\n deviceType: TestDeviceType;\n /**\n * \n * @type {TestRecordTemperatureVerification}\n * @memberof VerificationDTO\n */\n temperature?: TestRecordTemperatureVerification;\n /**\n * Number of tests since last verification.\n * @type {number}\n * @memberof VerificationDTO\n */\n testsSinceLastVerification: number;\n /**\n * Software version of the reader\n * @type {string}\n * @memberof VerificationDTO\n */\n readerSoftwareVersion: string;\n /**\n * Software version of the app, not used on desktop reader\n * @type {string}\n * @memberof VerificationDTO\n */\n appVersion?: string | null;\n /**\n * Id of the device health this verification belongs to\n * @type {number}\n * @memberof VerificationDTO\n */\n deviceHealthId: number;\n}\n/**\n * \n * @export\n * @interface VerificationShortDTO\n */\nexport interface VerificationShortDTO {\n /**\n * \n * @type {boolean}\n * @memberof VerificationShortDTO\n */\n calibrated: boolean;\n /**\n * \n * @type {boolean}\n * @memberof VerificationShortDTO\n */\n temperature?: boolean | null;\n /**\n * \n * @type {boolean}\n * @memberof VerificationShortDTO\n */\n intensity?: boolean | null;\n /**\n * \n * @type {string}\n * @memberof VerificationShortDTO\n */\n date: string;\n /**\n * \n * @type {VerificationTestTypeDTO}\n * @memberof VerificationShortDTO\n */\n testType?: VerificationTestTypeDTO;\n}\n/**\n * A measurement of a substance in a verification record.\n * @export\n * @interface VerificationSubstance\n */\nexport interface VerificationSubstance {\n /**\n * The ID of the verification record.\n * @type {number}\n * @memberof VerificationSubstance\n */\n verificationId: number;\n /**\n * \n * @type {Verification}\n * @memberof VerificationSubstance\n */\n verification?: Verification;\n /**\n * The ID of the substance.\n * @type {number}\n * @memberof VerificationSubstance\n */\n substanceId: number;\n /**\n * \n * @type {Substance}\n * @memberof VerificationSubstance\n */\n substance?: Substance;\n /**\n * The level measured for this substance in the verification.\n * @type {number}\n * @memberof VerificationSubstance\n */\n level: number;\n /**\n * \n * @type {TestResult}\n * @memberof VerificationSubstance\n */\n result?: TestResult;\n /**\n * Optional information that points to the data about the measurement of this particular substance in the raw verification result.\n * @type {string}\n * @memberof VerificationSubstance\n */\n readerResultReference?: string | null;\n /**\n * The intensity for this substance in the test.\n * @type {number}\n * @memberof VerificationSubstance\n */\n intensity?: number | null;\n}\n/**\n * \n * @export\n * @interface VerificationSubstanceDTO\n */\nexport interface VerificationSubstanceDTO {\n /**\n * \n * @type {number}\n * @memberof VerificationSubstanceDTO\n */\n verificationId: number;\n /**\n * \n * @type {number}\n * @memberof VerificationSubstanceDTO\n */\n substanceId: number;\n /**\n * \n * @type {TestRecordSubstanceObjectDTO}\n * @memberof VerificationSubstanceDTO\n */\n substance: TestRecordSubstanceObjectDTO;\n /**\n * \n * @type {number}\n * @memberof VerificationSubstanceDTO\n */\n level: number;\n /**\n * \n * @type {TestResult}\n * @memberof VerificationSubstanceDTO\n */\n result: TestResult;\n /**\n * \n * @type {string}\n * @memberof VerificationSubstanceDTO\n */\n readerResultReference?: string | null;\n /**\n * \n * @type {number}\n * @memberof VerificationSubstanceDTO\n */\n intensity?: number | null;\n}\n/**\n * \n * @export\n * @interface VerificationTestTypeDTO\n */\nexport interface VerificationTestTypeDTO {\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n id?: number;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n refId?: string | null;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n created?: string;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n updated?: string;\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n updatedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n deleted?: string | null;\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n createdByUserId?: number | null;\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n deletedByUserId?: number | null;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n name: string;\n /**\n * \n * @type {string}\n * @memberof VerificationTestTypeDTO\n */\n description?: string | null;\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n negativeValue: number;\n /**\n * \n * @type {number}\n * @memberof VerificationTestTypeDTO\n */\n positiveValue: number;\n /**\n * \n * @type {JudgeType}\n * @memberof VerificationTestTypeDTO\n */\n judgeType: JudgeType;\n /**\n * \n * @type {JudgingDirection}\n * @memberof VerificationTestTypeDTO\n */\n judgingDirection: JudgingDirection;\n /**\n * \n * @type {TestTypeCategory}\n * @memberof VerificationTestTypeDTO\n */\n category: TestTypeCategory;\n}\n/**\n * Represents a geolocation in the WGS84 reference system (quite commonly used, e.g. by Google Maps).\n * @export\n * @interface Wgs84Point\n */\nexport interface Wgs84Point {\n /**\n * The latitude of the location.\n * @type {number}\n * @memberof Wgs84Point\n */\n latitude: number;\n /**\n * The longitude of the location.\n * @type {number}\n * @memberof Wgs84Point\n */\n longitude: number;\n}\n\n/**\n * CloudApi - axios parameter creator\n * @export\n */\nexport const CloudApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * \n * @summary Create an email for Chr. Hansen, which is sent to them so they can take further action\n * @param {CloudRequest} [cloudRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CloudPost: async (cloudRequest?: CloudRequest, options: any = {}): Promise => {\n const localVarPath = `/v2/Cloud`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';\n\n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n const needsSerialization = (typeof cloudRequest !== \"string\") || localVarRequestOptions.headers['Content-Type'] === 'application/json';\n localVarRequestOptions.data = needsSerialization ? JSON.stringify(cloudRequest !== undefined ? cloudRequest : {}) : (cloudRequest || \"\");\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * CloudApi - functional programming interface\n * @export\n */\nexport const CloudApiFp = function(configuration?: Configuration) {\n return {\n /**\n * \n * @summary Create an email for Chr. Hansen, which is sent to them so they can take further action\n * @param {CloudRequest} [cloudRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CloudPost(cloudRequest?: CloudRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CloudApiAxiosParamCreator(configuration).v2CloudPost(cloudRequest, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n }\n};\n\n/**\n * CloudApi - factory interface\n * @export\n */\nexport const CloudApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n return {\n /**\n * \n * @summary Create an email for Chr. Hansen, which is sent to them so they can take further action\n * @param {CloudRequest} [cloudRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CloudPost(cloudRequest?: CloudRequest, options?: any): AxiosPromise {\n return CloudApiFp(configuration).v2CloudPost(cloudRequest, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for v2CloudPost operation in CloudApi.\n * @export\n * @interface CloudApiV2CloudPostRequest\n */\nexport interface CloudApiV2CloudPostRequest {\n /**\n * \n * @type {CloudRequest}\n * @memberof CloudApiV2CloudPost\n */\n readonly cloudRequest?: CloudRequest\n}\n\n/**\n * CloudApi - object-oriented interface\n * @export\n * @class CloudApi\n * @extends {BaseAPI}\n */\nexport class CloudApi extends BaseAPI {\n /**\n * \n * @summary Create an email for Chr. Hansen, which is sent to them so they can take further action\n * @param {CloudApiV2CloudPostRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CloudApi\n */\n public v2CloudPost(requestParameters: CloudApiV2CloudPostRequest = {}, options?: any) {\n return CloudApiFp(this.configuration).v2CloudPost(requestParameters.cloudRequest, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * CustomerApi - axios parameter creator\n * @export\n */\nexport const CustomerApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * \n * @summary Get a paginated list of customers\n * @param {CustomerCategory} [category] \n * @param {CustomerType} [type] \n * @param {string} [order] \n * @param {number} [page] \n * @param {number} [pageSize] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerGet: async (category?: CustomerCategory, type?: CustomerType, order?: string, page?: number, pageSize?: number, options: any = {}): Promise => {\n const localVarPath = `/v2/Customer`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (category !== undefined) {\n localVarQueryParameter['category'] = category;\n }\n\n if (type !== undefined) {\n localVarQueryParameter['type'] = type;\n }\n\n if (order !== undefined) {\n localVarQueryParameter['order'] = order;\n }\n\n if (page !== undefined) {\n localVarQueryParameter['page'] = page;\n }\n\n if (pageSize !== undefined) {\n localVarQueryParameter['pageSize'] = pageSize;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Delete a customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdDelete: async (id: number, options: any = {}): Promise => {\n // verify required parameter 'id' is not null or undefined\n if (id === null || id === undefined) {\n throw new RequiredError('id','Required parameter id was null or undefined when calling v2CustomerIdDelete.');\n }\n const localVarPath = `/v2/Customer/{id}`\n .replace(`{${\"id\"}}`, encodeURIComponent(String(id)));\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get a single customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdGet: async (id: number, options: any = {}): Promise => {\n // verify required parameter 'id' is not null or undefined\n if (id === null || id === undefined) {\n throw new RequiredError('id','Required parameter id was null or undefined when calling v2CustomerIdGet.');\n }\n const localVarPath = `/v2/Customer/{id}`\n .replace(`{${\"id\"}}`, encodeURIComponent(String(id)));\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Update a customer\n * @param {number} id \n * @param {UpdateCustomerRequest} [updateCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdPatch: async (id: number, updateCustomerRequest?: UpdateCustomerRequest, options: any = {}): Promise => {\n // verify required parameter 'id' is not null or undefined\n if (id === null || id === undefined) {\n throw new RequiredError('id','Required parameter id was null or undefined when calling v2CustomerIdPatch.');\n }\n const localVarPath = `/v2/Customer/{id}`\n .replace(`{${\"id\"}}`, encodeURIComponent(String(id)));\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';\n\n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n const needsSerialization = (typeof updateCustomerRequest !== \"string\") || localVarRequestOptions.headers['Content-Type'] === 'application/json';\n localVarRequestOptions.data = needsSerialization ? JSON.stringify(updateCustomerRequest !== undefined ? updateCustomerRequest : {}) : (updateCustomerRequest || \"\");\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Set the type of the customer (premium or not). Only usable for CH admins\n * @param {number} id \n * @param {string} [body] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdTypePost: async (id: number, body?: string, options: any = {}): Promise => {\n // verify required parameter 'id' is not null or undefined\n if (id === null || id === undefined) {\n throw new RequiredError('id','Required parameter id was null or undefined when calling v2CustomerIdTypePost.');\n }\n const localVarPath = `/v2/Customer/{id}/type`\n .replace(`{${\"id\"}}`, encodeURIComponent(String(id)));\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';\n\n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n const needsSerialization = (typeof body !== \"string\") || localVarRequestOptions.headers['Content-Type'] === 'application/json';\n localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || \"\");\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get a list of all customers available\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerListGet: async (options: any = {}): Promise => {\n const localVarPath = `/v2/Customer/list`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Create a customer\n * @param {CreateCustomerRequest} [createCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerPost: async (createCustomerRequest?: CreateCustomerRequest, options: any = {}): Promise => {\n const localVarPath = `/v2/Customer`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';\n\n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n const needsSerialization = (typeof createCustomerRequest !== \"string\") || localVarRequestOptions.headers['Content-Type'] === 'application/json';\n localVarRequestOptions.data = needsSerialization ? JSON.stringify(createCustomerRequest !== undefined ? createCustomerRequest : {}) : (createCustomerRequest || \"\");\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * CustomerApi - functional programming interface\n * @export\n */\nexport const CustomerApiFp = function(configuration?: Configuration) {\n return {\n /**\n * \n * @summary Get a paginated list of customers\n * @param {CustomerCategory} [category] \n * @param {CustomerType} [type] \n * @param {string} [order] \n * @param {number} [page] \n * @param {number} [pageSize] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerGet(category?: CustomerCategory, type?: CustomerType, order?: string, page?: number, pageSize?: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerGet(category, type, order, page, pageSize, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Delete a customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerIdDelete(id: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerIdDelete(id, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get a single customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerIdGet(id: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerIdGet(id, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Update a customer\n * @param {number} id \n * @param {UpdateCustomerRequest} [updateCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerIdPatch(id: number, updateCustomerRequest?: UpdateCustomerRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerIdPatch(id, updateCustomerRequest, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Set the type of the customer (premium or not). Only usable for CH admins\n * @param {number} id \n * @param {string} [body] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerIdTypePost(id: number, body?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerIdTypePost(id, body, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get a list of all customers available\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerListGet(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerListGet(options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Create a customer\n * @param {CreateCustomerRequest} [createCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2CustomerPost(createCustomerRequest?: CreateCustomerRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await CustomerApiAxiosParamCreator(configuration).v2CustomerPost(createCustomerRequest, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n }\n};\n\n/**\n * CustomerApi - factory interface\n * @export\n */\nexport const CustomerApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n return {\n /**\n * \n * @summary Get a paginated list of customers\n * @param {CustomerCategory} [category] \n * @param {CustomerType} [type] \n * @param {string} [order] \n * @param {number} [page] \n * @param {number} [pageSize] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerGet(category?: CustomerCategory, type?: CustomerType, order?: string, page?: number, pageSize?: number, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerGet(category, type, order, page, pageSize, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Delete a customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdDelete(id: number, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerIdDelete(id, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get a single customer\n * @param {number} id \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdGet(id: number, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerIdGet(id, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Update a customer\n * @param {number} id \n * @param {UpdateCustomerRequest} [updateCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdPatch(id: number, updateCustomerRequest?: UpdateCustomerRequest, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerIdPatch(id, updateCustomerRequest, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Set the type of the customer (premium or not). Only usable for CH admins\n * @param {number} id \n * @param {string} [body] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerIdTypePost(id: number, body?: string, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerIdTypePost(id, body, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get a list of all customers available\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerListGet(options?: any): AxiosPromise> {\n return CustomerApiFp(configuration).v2CustomerListGet(options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Create a customer\n * @param {CreateCustomerRequest} [createCustomerRequest] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2CustomerPost(createCustomerRequest?: CreateCustomerRequest, options?: any): AxiosPromise {\n return CustomerApiFp(configuration).v2CustomerPost(createCustomerRequest, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for v2CustomerGet operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerGetRequest\n */\nexport interface CustomerApiV2CustomerGetRequest {\n /**\n * \n * @type {CustomerCategory}\n * @memberof CustomerApiV2CustomerGet\n */\n readonly category?: CustomerCategory\n\n /**\n * \n * @type {CustomerType}\n * @memberof CustomerApiV2CustomerGet\n */\n readonly type?: CustomerType\n\n /**\n * \n * @type {string}\n * @memberof CustomerApiV2CustomerGet\n */\n readonly order?: string\n\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerGet\n */\n readonly page?: number\n\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerGet\n */\n readonly pageSize?: number\n}\n\n/**\n * Request parameters for v2CustomerIdDelete operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerIdDeleteRequest\n */\nexport interface CustomerApiV2CustomerIdDeleteRequest {\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerIdDelete\n */\n readonly id: number\n}\n\n/**\n * Request parameters for v2CustomerIdGet operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerIdGetRequest\n */\nexport interface CustomerApiV2CustomerIdGetRequest {\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerIdGet\n */\n readonly id: number\n}\n\n/**\n * Request parameters for v2CustomerIdPatch operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerIdPatchRequest\n */\nexport interface CustomerApiV2CustomerIdPatchRequest {\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerIdPatch\n */\n readonly id: number\n\n /**\n * \n * @type {UpdateCustomerRequest}\n * @memberof CustomerApiV2CustomerIdPatch\n */\n readonly updateCustomerRequest?: UpdateCustomerRequest\n}\n\n/**\n * Request parameters for v2CustomerIdTypePost operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerIdTypePostRequest\n */\nexport interface CustomerApiV2CustomerIdTypePostRequest {\n /**\n * \n * @type {number}\n * @memberof CustomerApiV2CustomerIdTypePost\n */\n readonly id: number\n\n /**\n * \n * @type {string}\n * @memberof CustomerApiV2CustomerIdTypePost\n */\n readonly body?: string\n}\n\n/**\n * Request parameters for v2CustomerPost operation in CustomerApi.\n * @export\n * @interface CustomerApiV2CustomerPostRequest\n */\nexport interface CustomerApiV2CustomerPostRequest {\n /**\n * \n * @type {CreateCustomerRequest}\n * @memberof CustomerApiV2CustomerPost\n */\n readonly createCustomerRequest?: CreateCustomerRequest\n}\n\n/**\n * CustomerApi - object-oriented interface\n * @export\n * @class CustomerApi\n * @extends {BaseAPI}\n */\nexport class CustomerApi extends BaseAPI {\n /**\n * \n * @summary Get a paginated list of customers\n * @param {CustomerApiV2CustomerGetRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerGet(requestParameters: CustomerApiV2CustomerGetRequest = {}, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerGet(requestParameters.category, requestParameters.type, requestParameters.order, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Delete a customer\n * @param {CustomerApiV2CustomerIdDeleteRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerIdDelete(requestParameters: CustomerApiV2CustomerIdDeleteRequest, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerIdDelete(requestParameters.id, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Get a single customer\n * @param {CustomerApiV2CustomerIdGetRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerIdGet(requestParameters: CustomerApiV2CustomerIdGetRequest, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerIdGet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Update a customer\n * @param {CustomerApiV2CustomerIdPatchRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerIdPatch(requestParameters: CustomerApiV2CustomerIdPatchRequest, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerIdPatch(requestParameters.id, requestParameters.updateCustomerRequest, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Set the type of the customer (premium or not). Only usable for CH admins\n * @param {CustomerApiV2CustomerIdTypePostRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerIdTypePost(requestParameters: CustomerApiV2CustomerIdTypePostRequest, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerIdTypePost(requestParameters.id, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Get a list of all customers available\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerListGet(options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerListGet(options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * \n * @summary Create a customer\n * @param {CustomerApiV2CustomerPostRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof CustomerApi\n */\n public v2CustomerPost(requestParameters: CustomerApiV2CustomerPostRequest = {}, options?: any) {\n return CustomerApiFp(this.configuration).v2CustomerPost(requestParameters.createCustomerRequest, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * DashboardApi - axios parameter creator\n * @export\n */\nexport const DashboardApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * \n * @summary Get false positives statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardFalsepositiveGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/falsepositive`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get key statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardKeystatisticsGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/keystatistics`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get markers for statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardMarkersGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/markers`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get substances statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardSubstancesGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/substances`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get test results statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardTestresultsGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/testresults`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get test performed statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardTestsperformedGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/testsperformed`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * \n * @summary Get user data for a dashboard\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardUserdataGet: async (start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options: any = {}): Promise => {\n const localVarPath = `/v2/Dashboard/userdata`;\n const localVarUrlObj = globalImportUrl.parse(localVarPath, true);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n // authentication Bearer required\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(\"Authorization\")\n : await configuration.apiKey;\n localVarHeaderParameter[\"Authorization\"] = localVarApiKeyValue;\n }\n\n if (start !== undefined) {\n localVarQueryParameter['start'] = (start as any instanceof Date) ?\n (start as any).toISOString() :\n start;\n }\n\n if (end !== undefined) {\n localVarQueryParameter['end'] = (end as any instanceof Date) ?\n (end as any).toISOString() :\n end;\n }\n\n if (customerId !== undefined) {\n localVarQueryParameter['customerId'] = customerId;\n }\n\n if (siteId !== undefined) {\n localVarQueryParameter['siteId'] = siteId;\n }\n\n if (routes) {\n localVarQueryParameter['routes'] = routes;\n }\n\n if (originals !== undefined) {\n localVarQueryParameter['originals'] = originals;\n }\n\n if (rejected !== undefined) {\n localVarQueryParameter['rejected'] = rejected;\n }\n\n if (includeDeleted !== undefined) {\n localVarQueryParameter['includeDeleted'] = includeDeleted;\n }\n\n\n \n localVarUrlObj.query = {...localVarUrlObj.query, ...localVarQueryParameter, ...options.query};\n // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943\n delete localVarUrlObj.search;\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: globalImportUrl.format(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * DashboardApi - functional programming interface\n * @export\n */\nexport const DashboardApiFp = function(configuration?: Configuration) {\n return {\n /**\n * \n * @summary Get false positives statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardFalsepositiveGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardFalsepositiveGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get key statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardKeystatisticsGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardKeystatisticsGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get markers for statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardMarkersGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardMarkersGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get substances statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardSubstancesGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardSubstancesGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get test results statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardTestresultsGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardTestresultsGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get test performed statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardTestsperformedGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardTestsperformedGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n /**\n * \n * @summary Get user data for a dashboard\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async v2DashboardUserdataGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> {\n const localVarAxiosArgs = await DashboardApiAxiosParamCreator(configuration).v2DashboardUserdataGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options);\n return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};\n return axios.request(axiosRequestArgs);\n };\n },\n }\n};\n\n/**\n * DashboardApi - factory interface\n * @export\n */\nexport const DashboardApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n return {\n /**\n * \n * @summary Get false positives statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardFalsepositiveGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise {\n return DashboardApiFp(configuration).v2DashboardFalsepositiveGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get key statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardKeystatisticsGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise {\n return DashboardApiFp(configuration).v2DashboardKeystatisticsGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get markers for statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardMarkersGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise> {\n return DashboardApiFp(configuration).v2DashboardMarkersGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get substances statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardSubstancesGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise {\n return DashboardApiFp(configuration).v2DashboardSubstancesGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get test results statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardTestresultsGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise {\n return DashboardApiFp(configuration).v2DashboardTestresultsGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get test performed statistics\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardTestsperformedGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise {\n return DashboardApiFp(configuration).v2DashboardTestsperformedGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n /**\n * \n * @summary Get user data for a dashboard\n * @param {string} [start] \n * @param {string} [end] \n * @param {number} [customerId] \n * @param {number} [siteId] \n * @param {Array} [routes] \n * @param {boolean} [originals] \n * @param {boolean} [rejected] \n * @param {boolean} [includeDeleted] \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n v2DashboardUserdataGet(start?: string, end?: string, customerId?: number, siteId?: number, routes?: Array, originals?: boolean, rejected?: boolean, includeDeleted?: boolean, options?: any): AxiosPromise> {\n return DashboardApiFp(configuration).v2DashboardUserdataGet(start, end, customerId, siteId, routes, originals, rejected, includeDeleted, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for v2DashboardFalsepositiveGet operation in DashboardApi.\n * @export\n * @interface DashboardApiV2DashboardFalsepositiveGetRequest\n */\nexport interface DashboardApiV2DashboardFalsepositiveGetRequest {\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly start?: string\n\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly end?: string\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly customerId?: number\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly siteId?: number\n\n /**\n * \n * @type {Array}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly routes?: Array\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly originals?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly rejected?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardFalsepositiveGet\n */\n readonly includeDeleted?: boolean\n}\n\n/**\n * Request parameters for v2DashboardKeystatisticsGet operation in DashboardApi.\n * @export\n * @interface DashboardApiV2DashboardKeystatisticsGetRequest\n */\nexport interface DashboardApiV2DashboardKeystatisticsGetRequest {\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly start?: string\n\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly end?: string\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly customerId?: number\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly siteId?: number\n\n /**\n * \n * @type {Array}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly routes?: Array\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly originals?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly rejected?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardKeystatisticsGet\n */\n readonly includeDeleted?: boolean\n}\n\n/**\n * Request parameters for v2DashboardMarkersGet operation in DashboardApi.\n * @export\n * @interface DashboardApiV2DashboardMarkersGetRequest\n */\nexport interface DashboardApiV2DashboardMarkersGetRequest {\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly start?: string\n\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly end?: string\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly customerId?: number\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly siteId?: number\n\n /**\n * \n * @type {Array}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly routes?: Array\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly originals?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly rejected?: boolean\n\n /**\n * \n * @type {boolean}\n * @memberof DashboardApiV2DashboardMarkersGet\n */\n readonly includeDeleted?: boolean\n}\n\n/**\n * Request parameters for v2DashboardSubstancesGet operation in DashboardApi.\n * @export\n * @interface DashboardApiV2DashboardSubstancesGetRequest\n */\nexport interface DashboardApiV2DashboardSubstancesGetRequest {\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardSubstancesGet\n */\n readonly start?: string\n\n /**\n * \n * @type {string}\n * @memberof DashboardApiV2DashboardSubstancesGet\n */\n readonly end?: string\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardSubstancesGet\n */\n readonly customerId?: number\n\n /**\n * \n * @type {number}\n * @memberof DashboardApiV2DashboardSubstancesGet\n */\n readonly siteId?: number\n\n /**\n * \n * @type {Array}\n * @memberof DashboardApiV2DashboardSubstancesGet\n */\n readonly routes?: Array