Device

data class Device(    val token: String,     val pushProvider: PushProvider,     val providerName: String?)

Device's information needed to register push notifications.

See also

Constructors

Link copied to clipboard
fun Device(    token: String,     pushProvider: PushProvider,     providerName: String?)

Properties

Link copied to clipboard
val providerName: String?

Push notifications provider name.

Link copied to clipboard
val pushProvider: PushProvider

Push notifications provider type.

Link copied to clipboard
val token: String

Device's token generated by push notification provider.