Created
December 4, 2022 20:26
-
-
Save Ochornma/f4d0c5ac611160fe01b6016f72661f0a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class SelfieVerificationRequest( | |
val tag: String, | |
val documentType: SelfieVerificationDocument, | |
val documentId: String, | |
val residence: Residence, | |
val userId: String, | |
val firstName: String, | |
val lastName: String, | |
val email: String, | |
val birthDate: String) | |
enum class SelfieVerificationDocument(val raw: String) { | |
DRIVERS_LICENSE("DRIVERS_LICENSE"), PASSPORT("PASSPORT"), VOTER_ID("VOTER_ID"), | |
NATIONAL_ID("NATIONAL_ID") | |
} | |
enum class Residence(val country: String, val countryPrefix: String, val displayCountry: String) { | |
NIGERIA("NGA", "NG", "Nigeria"), | |
GHANA("GHA", "GH", "Ghana"), | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment