LocalDevice

data class LocalDevice(    var id: String,     var displayName: String,     var deviceType: DeviceType,     var capabilities: List<DeviceCapability>,     var pushSubscription: DevicePushSubscription?,     var pushEndpointExpired: Boolean)

Local device that's connecting to FxA

This is returned by the device update methods and represents the server's view of the local device.

Constructors

Link copied to clipboard
constructor(    id: String,     displayName: String,     deviceType: DeviceType,     capabilities: List<DeviceCapability>,     pushSubscription: DevicePushSubscription?,     pushEndpointExpired: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var id: String
Link copied to clipboard