PushNotificationRegistation

public struct PushNotificationRegistation: Codable

Handles registering device for push notifications on the Predix Push Notification service

Example usage:

let pushRegistration = PushNotificationRegistation(token: deviceToken, userName: userName)

pushRegistration.register(to: pushServiceURL, with: myApplicationKey)
  • Device Push Notification token, obtained from: application(_: , didRegisterForRemoteNotificationsWithDeviceToken:)

    Declaration

    Swift

    public private(set) var token: String
  • Logged in User’s name/id

    Declaration

    Swift

    public private(set) var userId: String
  • Additional application-specific data to send to the Push Notification registration service

    Declaration

    Swift

    public private(set) var applicationInfo: [String: String]?
  • Initializes a new PushNotificationRegistation structure, for registering this device and user with Push Notifications

    Declaration

    Swift

    public init(token: Data, userName: String, applicationInfo: [String: String]? = nil)

    Parameters

    token

    Push Notification registration token from the device. See application(_: didRegisterForRemoteNotificationsWithDeviceToken:)

    userName

    Logged in User’s name or id

    applicationInfo

    Optional dictionary of additional application-specific name/value pairs to send to the Push Notification Registration Service.