AuthenticationInfo

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

The access token.

Link copied to clipboard

The name of the application.

Link copied to clipboard

The application version.

Link copied to clipboard

The date created.

Link copied to clipboard
Link copied to clipboard

The date revoked.

Link copied to clipboard

The device identifier.

Link copied to clipboard

The name of the device.

Link copied to clipboard
val id: Long

The identifier.

Link copied to clipboard

A value indicating whether this instance is active.

Link copied to clipboard

The user identifier.

Link copied to clipboard