AuthenticationInfo

@Serializable
data class AuthenticationInfo(val id: Long, val accessToken: String? = null, val deviceId: String? = null, val appName: String? = null, val appVersion: String? = null, val deviceName: String? = null, val userId: UUID, val isActive: Boolean, val dateCreated: DateTime, val dateRevoked: DateTime? = null, val dateLastActivity: DateTime, val userName: String? = null)

Constructors

Link copied to clipboard
constructor(id: Long, accessToken: String? = null, deviceId: String? = null, appName: String? = null, appVersion: String? = null, deviceName: String? = null, userId: UUID, isActive: Boolean, dateCreated: DateTime, dateRevoked: DateTime? = null, dateLastActivity: DateTime, userName: 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 = "DateCreated")
val dateCreated: DateTime

The date created.

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

The date revoked.

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

The device identifier.

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

The name of the device.

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

The identifier.

Link copied to clipboard
@SerialName(value = "IsActive")
val isActive: Boolean

A value indicating whether this instance is active.

Link copied to clipboard
@SerialName(value = "UserId")
val userId: UUID

The user identifier.

Link copied to clipboard
@SerialName(value = "UserName")
val userName: String?