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 * SearchEventsVpnConfidence.
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 * Filter events by VPN Detection result confidence level.
34 * `high` - events with high VPN Detection confidence.
35 * `medium` - events with medium VPN Detection confidence.
36 * `low` - events with low VPN Detection confidence.
37 * > Note: When using this parameter, only events with the `vpn.confidence` property set to a valid value are returned. Events without a `vpn` Smart Signal result are left out of the response.
38 *
39 * @category Enum
40 *
41 * @description Filter events by VPN Detection result confidence level. &#x60;high&#x60; - events with high VPN Detection confidence. &#x60;medium&#x60; - events with medium VPN Detection confidence. &#x60;low&#x60; - events with low VPN Detection confidence. &gt; Note: When using this parameter, only events with the &#x60;vpn.confidence&#x60; property set to a valid value are returned. Events without a &#x60;vpn&#x60; Smart Signal result are left out of the response.
42 *
43 * @author   Fingerprint
44 *
45 * @see      https://fingerprint.com
46 *
47 * @noinspection GrazieInspection
48 * @noinspection RedundantSuppression
49 */
50enum SearchEventsVpnConfidence: string
51{
52    case HIGH = 'high';
53    case MEDIUM = 'medium';
54    case LOW = 'low';
55}