com.paysera.lib.inrento.entities.account.PSAccount.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-lib-inrento-sdk Show documentation
Show all versions of kotlin-lib-inrento-sdk Show documentation
Paysera: Kotlin InRento SDK Library
package com.paysera.lib.inrento.entities.account
import com.google.gson.annotations.SerializedName
data class PSAccount(
@SerializedName("user_id") val id: Int,
val accountType: PSAccountType,
val email: String,
val name: String,
val surname: String,
val companyName: String? = null,
val invitedUsersCount: Int,
@SerializedName("verified") val isVerified: Boolean,
val showBeforeInvestQuestionnaire: Boolean,
val showRiskAgreement: Boolean
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy