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
Content copied to clipboard
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)
Content copied to clipboard