File tree Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,18 @@ enum ErrorCodeEnum: string
15
15
{
16
16
case SUCCESS = '00 ' ;
17
17
case DUPLICATE_TRANSACTION = '01 ' ;
18
- case WRONG_REQUEST = '02 ' ;
19
- case UNAUTHENTICATED = '06 ' ;
20
- case ERROR = '11 ' ;
21
- case INVALID_ACCOUNT = '13 ' ;
18
+ case UNABLE_TO_CREATE_REQUEST = '02 ' ;
19
+ case UNKNOWN_STATE = '03 ' ;
20
+ case TRANSACTION_QUERY_DATERANGE_EXPIRED = '04 ' ;
21
+ case TRANSACTION_NOT_FOUND = '05 ' ;
22
+ case AUTH_TOKEN_REQUIRED = '06 ' ;
23
+ case EXPIRED_TOKEN = '07 ' ;
24
+ case INVALID_TOKEN = '08 ' ;
25
+ case INVALID_USER_CREDENTIALS = '09 ' ;
26
+ case INACTIVE_CREDENTIALS = '10 ' ;
27
+ case ERROR_PROCESSING_REQUEST = '11 ' ;
28
+ case INVALID_CALLER_IP_ADDRESS = '12 ' ;
29
+ case WRONG_ACCOUNT_PASSED = '13 ' ;
22
30
case SYSTEM_EXCEPTION = '14 ' ;
31
+ case INTERNAL_BAD_REQUEST = '15 ' ;
23
32
}
Original file line number Diff line number Diff line change 13
13
*/
14
14
enum StatusCodeEnum: string
15
15
{
16
- /**
17
- * Transaction processed.
18
- */
16
+ case PROCESSING = 'PROCESSING ' ;
19
17
case PROCESSED = 'PROCESSED ' ;
18
+ case PENDING = 'PENDING ' ;
19
+ case UNKNOWN = 'UNKNOWN ' ;
20
20
}
You can’t perform that action at this time.
0 commit comments