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 | * BotResult. |
| 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 | |
| 30 | namespace Fingerprint\ServerSdk\Model; |
| 31 | |
| 32 | /** |
| 33 | * Bot detection result: |
| 34 | * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on |
| 35 | * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on |
| 36 | * `not_detected` - the visitor is not a bot |
| 37 | * |
| 38 | * @category Enum |
| 39 | * |
| 40 | * @description Bot detection result: * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on * `not_detected` - the visitor is not a bot |
| 41 | * |
| 42 | * @author Fingerprint |
| 43 | * |
| 44 | * @see https://fingerprint.com |
| 45 | * |
| 46 | * @noinspection GrazieInspection |
| 47 | * @noinspection RedundantSuppression |
| 48 | */ |
| 49 | enum BotResult: string |
| 50 | { |
| 51 | case BAD = 'bad'; |
| 52 | case GOOD = 'good'; |
| 53 | case NOT_DETECTED = 'not_detected'; |
| 54 | } |