QuickConnectResult

@Serializable
data class QuickConnectResult(val authenticated: Boolean, val secret: String, val code: String, val deviceId: String, val deviceName: String, val appName: String, val appVersion: String, val dateAdded: DateTime)

Stores the state of an quick connect request.

Constructors

Link copied to clipboard
constructor(authenticated: Boolean, secret: String, code: String, deviceId: String, deviceName: String, appName: String, appVersion: String, dateAdded: DateTime)

Properties

Link copied to clipboard
@SerialName(value = "AppName")
val appName: String

The requesting app name.

Link copied to clipboard
@SerialName(value = "AppVersion")
val appVersion: String

The requesting app version.

Link copied to clipboard
@SerialName(value = "Authenticated")
val authenticated: Boolean

A value indicating whether this request is authorized.

Link copied to clipboard
@SerialName(value = "Code")
val code: String

The user facing code used so the user can quickly differentiate this request from others.

Link copied to clipboard
@SerialName(value = "DateAdded")
val dateAdded: DateTime

The DateTime that this request was created.

Link copied to clipboard
@SerialName(value = "DeviceId")
val deviceId: String

The requesting device id.

Link copied to clipboard
@SerialName(value = "DeviceName")
val deviceName: String

The requesting device name.

Link copied to clipboard
@SerialName(value = "Secret")
val secret: String

The secret value used to uniquely identify this request. Can be used to retrieve authentication information.