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 * SearchEventsRareDevicePercentileBucket.
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 Device Rarity percentile bucket.
34 * `<p95` - device configuration is in the bottom 95% (most common).
35 * `p95-p99` - device is in the 95th to 99th percentile.
36 * `p99-p99.5` - device is in the 99th to 99.5th percentile.
37 * `p99.5-p99.9` - device is in the 99.5th to 99.9th percentile.
38 * `p99.9+` - device is in the top 0.1% (rarest).
39 * `not_seen` - device configuration has never been observed before.
40 *
41 * @category Enum
42 *
43 * @description Filter events by Device Rarity percentile bucket. &#x60;&lt;p95&#x60; - device configuration is in the bottom 95% (most common). &#x60;p95-p99&#x60; - device is in the 95th to 99th percentile. &#x60;p99-p99.5&#x60; - device is in the 99th to 99.5th percentile. &#x60;p99.5-p99.9&#x60; - device is in the 99.5th to 99.9th percentile. &#x60;p99.9+&#x60; - device is in the top 0.1% (rarest). &#x60;not_seen&#x60; - device configuration has never been observed before.
44 *
45 * @author   Fingerprint
46 *
47 * @see      https://fingerprint.com
48 *
49 * @noinspection GrazieInspection
50 * @noinspection RedundantSuppression
51 */
52enum SearchEventsRareDevicePercentileBucket: string
53{
54    case P95 = '<p95';
55    case P95_P99 = 'p95-p99';
56    case P99_P99_5 = 'p99-p99.5';
57    case P99_5_P99_9 = 'p99.5-p99.9';
58    case P99_9 = 'p99.9+';
59    case NOT_SEEN = 'not_seen';
60}