SecureData

@Serializable
data class SecureData(    val personalDetails: PersonalDetailsSecureValue? = null,     val passport: CommonPassportSecureValue? = null,     val internalPassport: InternalPassportSecureValue? = null,     val driverLicense: DriverLicenseSecureValue? = null,     val identityCard: IdentityCardSecureValue? = null,     val utilityBill: UtilityBillSecureValue? = null,     val bankStatement: BankStatementSecureValue? = null,     val rentalAgreement: RentalAgreementSecureValue? = null,     val passportRegistration: PassportRegistrationSecureValue? = null,     val temporaryRegistration: TemporalRegistrationSecureValue? = null)

Constructors

Link copied to clipboard
constructor(    personalDetails: PersonalDetailsSecureValue? = null,     passport: CommonPassportSecureValue? = null,     internalPassport: InternalPassportSecureValue? = null,     driverLicense: DriverLicenseSecureValue? = null,     identityCard: IdentityCardSecureValue? = null,     utilityBill: UtilityBillSecureValue? = null,     bankStatement: BankStatementSecureValue? = null,     rentalAgreement: RentalAgreementSecureValue? = null,     passportRegistration: PassportRegistrationSecureValue? = null,     temporaryRegistration: TemporalRegistrationSecureValue? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@SerialName(value = "bank_statement")
val bankStatement: BankStatementSecureValue? = null
Link copied to clipboard
@SerialName(value = "driver_license")
val driverLicense: DriverLicenseSecureValue? = null
Link copied to clipboard
@SerialName(value = "identity_card")
val identityCard: IdentityCardSecureValue? = null
Link copied to clipboard
@SerialName(value = "internal_passport")
val internalPassport: InternalPassportSecureValue? = null
Link copied to clipboard
@SerialName(value = "passport")
val passport: CommonPassportSecureValue? = null
Link copied to clipboard
@SerialName(value = "passport_registration")
val passportRegistration: PassportRegistrationSecureValue? = null
Link copied to clipboard
@SerialName(value = "personal_details")
val personalDetails: PersonalDetailsSecureValue? = null
Link copied to clipboard
@SerialName(value = "rental_agreement")
val rentalAgreement: RentalAgreementSecureValue? = null
Link copied to clipboard
@SerialName(value = "temporary_registration")
val temporaryRegistration: TemporalRegistrationSecureValue? = null
Link copied to clipboard
@SerialName(value = "utility_bill")
val utilityBill: UtilityBillSecureValue? = null