ARTStatsRequestCount
Objective-C
@interface ARTStatsRequestCount : NSObject
Swift
class ARTStatsRequestCount : NSObject
Contains the aggregate counts for requests made.
-
The number of requests that succeeded.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger succeeded;
Swift
var succeeded: UInt { get }
-
The number of requests that failed.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger failed;
Swift
var failed: UInt { get }
-
The number of requests that were refused, typically as a result of permissions or a limit being exceeded.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger refused;
Swift
var refused: UInt { get }