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 * RareDevicePercentileBucket.
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 rarity percentile bucket of the device, indicating how uncommon the device configuration is compared to all observed devices.
34 * > This Smart Signal is currently in beta and only available to select customers. If you are interested, please [contact our support team](https://fingerprint.com/support/).
35 *
36 * @category Enum
37 *
38 * @description The rarity percentile bucket of the device, indicating how uncommon the device configuration is compared to all observed devices.  &gt; This Smart Signal is currently in beta and only available to select customers. If you are interested, please [contact our support team](https://fingerprint.com/support/).
39 *
40 * @author   Fingerprint
41 *
42 * @see      https://fingerprint.com
43 *
44 * @noinspection GrazieInspection
45 * @noinspection RedundantSuppression
46 */
47enum RareDevicePercentileBucket: string
48{
49    case P95 = '<p95';
50    case P95_P99 = 'p95-p99';
51    case P99_P99_5 = 'p99-p99.5';
52    case P99_5_P99_9 = 'p99.5-p99.9';
53    case P99_9 = 'p99.9+';
54    case NOT_SEEN = 'not_seen';
55}