ARTDevicePushDetails
Objective-C
@interface ARTDevicePushDetails : NSObject
Swift
class ARTDevicePushDetails : NSObject, @unchecked Sendable
Contains the details of the push registration of a device.
-
A JSON object of key-value pairs that contains of the push transport and address.
Declaration
Objective-C
@property (nonatomic, readonly) NSMutableDictionary<NSString *, NSObject *> *_Nonnull recipient;Swift
var recipient: NSMutableDictionary { get } -
The current state of the push registration.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *state;Swift
var state: String? { get } -
An
ARTErrorInfoobject describing the most recent error when thestateisFailingorFailed.Declaration
Objective-C
@property (nonatomic, readonly, nullable) ARTErrorInfo *errorReason;Swift
var errorReason: ARTErrorInfo? { get }