User

data class User(    val id: Long? = null,     val extId: String? = null,     var email: String? = null,     var residency: String? = null,     var isLegalEntity: Boolean? = null,     var emailConfirmed: String? = null,     val disclaimerAccepted: String? = null,     val verificationRequests: List<VerificationRequest> = emptyList(),     val availableImages: List<TokenImage> = emptyList(),     val blockchainAccounts: List<BlockchainAccount> = emptyList(),     val subscriptionExpiryDate: Date? = null) : Serializable

Constructors

Link copied to clipboard
fun User(    id: Long? = null,     extId: String? = null,     email: String? = null,     residency: String? = null,     isLegalEntity: Boolean? = null,     emailConfirmed: String? = null,     disclaimerAccepted: String? = null,     verificationRequests: List<VerificationRequest> = emptyList(),     availableImages: List<TokenImage> = emptyList(),     blockchainAccounts: List<BlockchainAccount> = emptyList(),     subscriptionExpiryDate: Date? = null)

Functions

Link copied to clipboard
fun isEmailConfirmed(): Boolean
Link copied to clipboard
fun isIdentityVerified(): Boolean
Link copied to clipboard
fun verificationStatus(): VerificationStatus

Properties

Link copied to clipboard
val availableImages: List<TokenImage>
Link copied to clipboard
val blockchainAccounts: List<BlockchainAccount>
Link copied to clipboard
val disclaimerAccepted: String? = null
Link copied to clipboard
var email: String? = null
Link copied to clipboard
var emailConfirmed: String? = null
Link copied to clipboard
val extId: String? = null
Link copied to clipboard
val hasMembership: Boolean
Link copied to clipboard
val id: Long? = null
Link copied to clipboard
var isLegalEntity: Boolean? = null
Link copied to clipboard
var residency: String? = null
Link copied to clipboard
val subscriptionExpiryDate: Date? = null
Link copied to clipboard
val verificationRequests: List<VerificationRequest>