ChipDna Mobile
Loading...
Searching...
No Matches
RequestQueueStatus.h
1
11typedef NSString* CEMOfflineRequestType;
12extern NSString* const CEMOfflineRequestTypeSale;
13extern NSString* const CEMOfflineRequestTypeSaleConf;
14extern NSString* const CEMOfflineRequestTypeSaleVoid;
15extern NSString* const CEMOfflineRequestTypeRefund;
16extern NSString* const CEMOfflineRequestTypeRefundConf;
17extern NSString* const CEMOfflineRequestTypeRefundVoid;
19#import <Foundation/Foundation.h>
20
21@interface RequestQueueStatus : NSObject
22
23
27@property (nonatomic, strong, readonly)NSString *dateTimeFormat;
28
32@property (nonatomic, readonly)NSInteger totalNumberOfPendingRequests;
33
37@property (nonatomic, readonly)NSInteger totalNumberOfFailedRequires;
38
42@property (nonatomic, readonly)NSInteger pendingRequestsStorageLimit;
43
47@property (nonatomic, readonly)NSInteger totalPendingValueStored;
48
52@property (nonatomic, readonly)NSInteger totalFailedValueStored;
53
57@property (nonatomic, readonly)NSInteger pendingRequestsValueLimit;
58
62@property (nonatomic, strong, readonly)NSString *oldestPendingRequestDateTime;
63
67@property (nonatomic, strong, readonly)NSDictionary *numberOfPendingRequests;
68
72@property (nonatomic, strong, readonly)NSDictionary *numberOfFailedRequests;
73
77@property (nonatomic, strong, readonly)NSDictionary *valueOfPendingRequests;
78
82@property (nonatomic, strong, readonly)NSDictionary *valueOfFailedRequests;
83
87@property (nonatomic, strong, readonly)NSArray *failedOfflineRequests;
88
89@end
The current status of the offline request queue.
Definition: RequestQueueStatus.h:22
NSArray * failedOfflineRequests
Definition: RequestQueueStatus.h:87
NSString * dateTimeFormat
Definition: RequestQueueStatus.h:27
NSString * oldestPendingRequestDateTime
Definition: RequestQueueStatus.h:62
NSInteger pendingRequestsValueLimit
Definition: RequestQueueStatus.h:57
NSInteger totalNumberOfPendingRequests
Definition: RequestQueueStatus.h:32
NSInteger totalNumberOfFailedRequires
Definition: RequestQueueStatus.h:37
NSDictionary * numberOfFailedRequests
Definition: RequestQueueStatus.h:72
NSDictionary * valueOfPendingRequests
Definition: RequestQueueStatus.h:77
NSInteger pendingRequestsStorageLimit
Definition: RequestQueueStatus.h:42
NSInteger totalFailedValueStored
Definition: RequestQueueStatus.h:52
NSInteger totalPendingValueStored
Definition: RequestQueueStatus.h:47
NSDictionary * valueOfFailedRequests
Definition: RequestQueueStatus.h:82
NSDictionary * numberOfPendingRequests
Definition: RequestQueueStatus.h:67