DeviceInfoDto

@Serializable
data class DeviceInfoDto(val name: String? = null, val customName: String? = null, val accessToken: String? = null, val id: String? = null, val lastUserName: String? = null, val appName: String? = null, val appVersion: String? = null, val lastUserId: UUID? = null, val dateLastActivity: DateTime? = null, val capabilities: ClientCapabilitiesDto, val iconUrl: String? = null)

A DTO representing device information.

Constructors

Link copied to clipboard
constructor(name: String? = null, customName: String? = null, accessToken: String? = null, id: String? = null, lastUserName: String? = null, appName: String? = null, appVersion: String? = null, lastUserId: UUID? = null, dateLastActivity: DateTime? = null, capabilities: ClientCapabilitiesDto, iconUrl: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "AccessToken")
val accessToken: String?

The access token.

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

The name of the application.

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

The application version.

Link copied to clipboard
@SerialName(value = "Capabilities")
val capabilities: ClientCapabilitiesDto

The capabilities.

Link copied to clipboard
@SerialName(value = "CustomName")
val customName: String?

The custom name.

Link copied to clipboard
@SerialName(value = "DateLastActivity")
val dateLastActivity: DateTime?

The date last modified.

Link copied to clipboard
@SerialName(value = "IconUrl")
val iconUrl: String?

The icon URL.

Link copied to clipboard
@SerialName(value = "Id")
val id: String?

The identifier.

Link copied to clipboard
@SerialName(value = "LastUserId")
val lastUserId: UUID?

The last user identifier.

Link copied to clipboard
@SerialName(value = "LastUserName")
val lastUserName: String?

The last name of the user.

Link copied to clipboard
@SerialName(value = "Name")
val name: String?

The name.