You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.2 KiB

1 year ago
  1. namespace Common.Model
  2. {
  3. public class KycResponse
  4. {
  5. public string userId { get; set; }
  6. public string firstName { get; set; }
  7. public string middleName { get; set; }
  8. public string lastName { get; set; }
  9. public string nickName { get; set; }
  10. public string mobileNumber { get; set; }
  11. public string email { get; set; }
  12. public string gender { get; set; }
  13. public string dateOfBirth { get; set; }
  14. public string nativeCountry { get; set; }
  15. public string country { get; set; }
  16. public string occupation { get; set; }
  17. public string primaryBankName { get; set; }
  18. public string primaryAccountNumber { get; set; }
  19. public string verificationIdType { get; set; }
  20. public string verificationIdNumber { get; set; }
  21. public string expiryDate { get; set; }
  22. public string sourceOfFund { get; set; }
  23. public string regIdcardFrontUrl { get; set; }
  24. public string regIdcardBackUrl { get; set; }
  25. public string passbookUrl { get; set; }
  26. public string passportUrl { get; set; }
  27. public string selfieUrl { get; set; }
  28. public string province { get; set; }
  29. public string provinceId { get; set; }
  30. }
  31. }