ARTStatsPushCount

Objective-C

@interface ARTStatsPushCount : NSObject

Swift

class ARTStatsPushCount : NSObject

Details the stats on push notifications.

  • Total number of delivered push notifications.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger succeeded;

    Swift

    var succeeded: UInt { get }
  • Total number of attempted push notifications which were rejected due to invalid request data.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger invalid;

    Swift

    var invalid: UInt { get }
  • Total number of attempted push notifications including notifications which were rejected as invalid or failed to publish.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger attempted;

    Swift

    var attempted: UInt { get }
  • Total number of refused push notifications.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger failed;

    Swift

    var failed: UInt { get }
  • Total number of push messages.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger messages;

    Swift

    var messages: UInt { get }
  • Total number of direct publishes.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger direct;

    Swift

    var direct: UInt { get }