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 | * BotInfoCategory. |
| 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 | * The type and purpose of the bot. |
| 34 | * |
| 35 | * @category Enum |
| 36 | * |
| 37 | * @description The type and purpose of the bot. |
| 38 | * |
| 39 | * @author Fingerprint |
| 40 | * |
| 41 | * @see https://fingerprint.com |
| 42 | * |
| 43 | * @noinspection GrazieInspection |
| 44 | * @noinspection RedundantSuppression |
| 45 | */ |
| 46 | enum BotInfoCategory: string |
| 47 | { |
| 48 | case ADVERTISING_AND_MARKETING = 'advertising_and_marketing'; |
| 49 | case AGGREGATOR = 'aggregator'; |
| 50 | case AI_AGENT = 'ai_agent'; |
| 51 | case AI_ASSISTANT = 'ai_assistant'; |
| 52 | case AI_BROWSER = 'ai_browser'; |
| 53 | case AI_CRAWLER = 'ai_crawler'; |
| 54 | case AI_SEARCH = 'ai_search'; |
| 55 | case BROWSER_AUTOMATION = 'browser_automation'; |
| 56 | case ECOMMERCE = 'ecommerce'; |
| 57 | case MONITORING_AND_ANALYTICS = 'monitoring_and_analytics'; |
| 58 | case OTHER = 'other'; |
| 59 | case SCRAPING = 'scraping'; |
| 60 | case SECURITY = 'security'; |
| 61 | case SEARCH_ENGINE_CRAWLER = 'search_engine_crawler'; |
| 62 | case SEARCH_ENGINE_OPTIMIZATION = 'search_engine_optimization'; |
| 63 | case UNKNOWN = 'unknown'; |
| 64 | } |