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 * ErrorCode.
4 *
5 * @category Class
6 *
7 * @author   Swagger Codegen team
8 *
9 * @see     https://github.com/swagger-api/swagger-codegen
10 */
11
12/**
13 * Fingerprint Pro Server API.
14 *
15 * Fingerprint Pro Server API allows you to get information about visitors and about individual 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.
16 *
17 * OpenAPI spec version: 3
18 * Contact: support@fingerprint.com
19 * Generated by: https://github.com/swagger-api/swagger-codegen.git
20 * Swagger Codegen version: 3.0.34
21 */
22/**
23 * NOTE: This class is auto generated by the swagger code generator program.
24 * https://github.com/swagger-api/swagger-codegen
25 * Do not edit the class manually.
26 */
27
28namespace Fingerprint\ServerAPI\Model;
29
30/**
31 * ErrorCode Class Doc Comment.
32 *
33 * @category Class
34 *
35 * @description Error code:  * `RequestCannotBeParsed` - the query parameters or JSON payload contains some errors            that prevented us from parsing it (wrong type/surpassed limits).  * `TokenRequired` - `Auth-API-Key` header is missing or empty.  * `TokenNotFound` - no Fingerprint application found for specified secret key.  * `SubscriptionNotActive` - Fingerprint application is not active.  * `WrongRegion` - server and application region differ.  * `FeatureNotEnabled` - this feature (for example, Delete API) is not enabled for your application.  * `RequestNotFound` - the specified request ID was not found. It never existed, expired, or it has been deleted.  * `VisitorNotFound` - The specified visitor ID was not found. It never existed or it may have already been deleted.  * `TooManyRequests` - the limit on secret API key requests per second has been exceeded.  * `429 Too Many Requests` - the limit on secret API key requests per second has been exceeded.  * `StateNotReady` - The event specified with request id is           not ready for updates yet. Try again.           This error happens in rare cases when update API is called immediately           after receiving the request id on the client. In case you need to send           information right away, we recommend using the JS agent API instead.  * `Failed` - internal server error.
36 *
37 * @author   Swagger Codegen team
38 *
39 * @see     https://github.com/swagger-api/swagger-codegen
40 */
41enum ErrorCode: string
42{
43    case REQUEST_CANNOT_BE_PARSED = 'RequestCannotBeParsed';
44    case TOKEN_REQUIRED = 'TokenRequired';
45    case TOKEN_NOT_FOUND = 'TokenNotFound';
46    case SUBSCRIPTION_NOT_ACTIVE = 'SubscriptionNotActive';
47    case WRONG_REGION = 'WrongRegion';
48    case FEATURE_NOT_ENABLED = 'FeatureNotEnabled';
49    case REQUEST_NOT_FOUND = 'RequestNotFound';
50    case VISITOR_NOT_FOUND = 'VisitorNotFound';
51    case TOO_MANY_REQUESTS = 'TooManyRequests';
52    case _429_TOO_MANY_REQUESTS = '429 Too Many Requests';
53    case STATE_NOT_READY = 'StateNotReady';
54    case FAILED = 'Failed';
55}