ARTPushAdminInternal
Objective-C
@interface ARTPushAdminInternal : NSObject
@property (nonatomic, readonly) ARTPushDeviceRegistrationsInternal *deviceRegistrations;
@property (nonatomic, readonly) ARTPushChannelSubscriptionsInternal *channelSubscriptions;
- (instancetype)initWithRest:(ARTRestInternal *)rest logger:(ARTInternalLog *)logger;
- (void)publish:(ARTPushRecipient *)recipient data:(ARTJsonObject *)data wrapperSDKAgents:(nullable NSStringDictionary *)wrapperSDKAgents callback:(nullable ARTCallback)callback;
@end
Swift
class ARTPushAdminInternal : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) ARTPushDeviceRegistrationsInternal *deviceRegistrations
Swift
var deviceRegistrations: ARTPushDeviceRegistrationsInternal { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) ARTPushChannelSubscriptionsInternal *channelSubscriptions
Swift
var channelSubscriptions: ARTPushChannelSubscriptionsInternal { get }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithRest:(ARTRestInternal *)rest logger:(ARTInternalLog *)logger;
Swift
init(rest: ARTRestInternal, logger: InternalLog)
-
Undocumented
Declaration
Objective-C
- (void)publish:(ARTPushRecipient *)recipient data:(ARTJsonObject *)data wrapperSDKAgents:(nullable NSStringDictionary *)wrapperSDKAgents callback:(nullable ARTCallback)callback;
Swift
func publish(_ recipient: [String : Any], data: [String : Any], wrapperSDKAgents: [String : String]?, callback: ARTCallback? = nil)