Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3/**
4 * TamperingConfidence.
5 *
6 * @category Enum
7 *
8 * @author   Fingerprint
9 *
10 * @see      https://fingerprint.com
11 */
12
13/**
14 * Server API.
15 *
16 * Fingerprint Server API allows you to get, search, and update Events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device.
17 *
18 * The version of the OpenAPI document: 4
19 * Contact: support@fingerprint.com
20 * Generated by: https://openapi-generator.tech
21 * Generator version: 7.21.0
22 */
23
24/**
25 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
26 * https://openapi-generator.tech
27 * Do not edit the class manually.
28 */
29
30namespace Fingerprint\ServerSdk\Model;
31
32/**
33 * The confidence level indicates how certain Fingerprint is that the current request involves browser tampering. This confidence level is determined by evaluating multiple factors, such as heuristic rules, probabilistic anomaly detection, an anti detect browser ml model, and other relevant methods. It is conveyed as a string with possible values such as high, medium, or low
34 * In case of tampering: `true`
35 * **High confidence**: heuristic anti detect browser signals and the ml model are triggered, or all of the methods are triggered.
36 * **Medium confidence**: either the ml model triggers alone, the anomaly score triggers alone with or without the heuristic anti detect browser methods trigger.
37 * **Low confidence**: only the heuristic anti detect methods are triggered.
38 *
39 * In case of tampering: `false`
40 * **High confidence:** Strong signals suggest the user is not tampering with their request.
41 *
42 * @category Enum
43 *
44 * @description The confidence level indicates how certain Fingerprint is that the current request involves browser tampering. This confidence level is determined by evaluating multiple factors, such as heuristic rules, probabilistic anomaly detection, an anti detect browser ml model, and other relevant methods. It is conveyed as a string with possible values such as high, medium, or low In case of tampering: &#x60;true&#x60; * **High confidence**: heuristic anti detect browser signals and the ml model are triggered, or all of the methods are triggered. * **Medium confidence**: either the ml model triggers alone, the anomaly score triggers alone with or without the heuristic anti detect browser methods trigger. * **Low confidence**: only the heuristic anti detect methods are triggered.  In case of tampering: &#x60;false&#x60; * **High confidence:** Strong signals suggest the user is not tampering with their request.
45 *
46 * @author   Fingerprint
47 *
48 * @see      https://fingerprint.com
49 *
50 * @noinspection GrazieInspection
51 * @noinspection RedundantSuppression
52 */
53enum TamperingConfidence: string
54{
55    case LOW = 'low';
56    case MEDIUM = 'medium';
57    case HIGH = 'high';
58}