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.

79 lines
3.0 KiB

1 year ago
1 year ago
  1. using System.Collections.Generic;
  2. namespace Common.Model
  3. {
  4. public class LoginResponse : JsonRxResponse
  5. {
  6. public string userId { get; set; }
  7. public string senderId { get; set; }
  8. public object firstName { get; set; }
  9. //public object middleName { get; set; }
  10. //public object lastName { get; set; }
  11. //public object nickName { get; set; }
  12. public string email { get; set; }
  13. public string customerEmail { get; set; }
  14. public object mobileNumber { get; set; }
  15. public string rewardPoint { get; set; }
  16. public object walletNumber { get; set; }
  17. public string availableBalance { get; set; }
  18. public object primaryBankName { get; set; }
  19. public string accessCode { get; set; }
  20. public object dpUrl { get; set; }
  21. public bool kyc { get; set; }
  22. public bool verified { get; set; }
  23. public bool active { get; set; }
  24. public object cmRegistrationId { get; set; }
  25. public bool isReferred { get; set; }
  26. public object country { get; set; }
  27. public object province { get; set; }
  28. public object provinceId { get; set; }
  29. public object sourceId { get; set; }
  30. //public string idType { get; set; }
  31. //public string idNumber { get; set; }
  32. public string countryCode { get; set; }
  33. public string yearlyLimit { get; set; }
  34. public string dob { get; set; }
  35. public string pennyTestStatus { get; set; }
  36. //public string primaryBankAccount { get; set; }
  37. public string kftcClientId { get; set; }
  38. public IList<AppUpdate> appUpdate { get; set; }
  39. public string accessTokenRegTime { get; set; }
  40. public string accessTokenExpTime { get; set; }
  41. public string redirectTo { get; set; }
  42. public bool isExistingCustomer { get; set; }
  43. public bool hasVerifiedOTP { get; set; }
  44. public int hasUpdatedDefaultCredentials { get; set; }
  45. public bool IsBiometricLogin { get; set; }
  46. public string BiometricLoginType { get; set; }
  47. public string referralCode { get; set; } // 추천인 코드 추가 12.09 By Justin
  48. public string agreeYn { get; set; } // 이용자 정보 동의 매개변수 추가 20.01.03 Justin
  49. public string notificationCount { get; set; }
  50. public string idExpiryDate { get; set; }
  51. public string IdStatus { get; set; }
  52. public string showInviteCode { get; set; }
  53. public string RewardPoints { get; set; }
  54. public string ResidenceType { get; set; }
  55. public string UseNFC { get; set; }
  56. public string SelfieDocPath { get; set; }
  57. public bool KycVerified { get; set; }
  58. public string KycStatus { get; set; }
  59. public string KycStatusMsg { get; set; }
  60. }
  61. public class AppUpdate
  62. {
  63. public string OS { get; set; }
  64. public string Build { get; set; }
  65. public string Version { get; set; }
  66. public string Critical { get; set; }
  67. public string Info { get; set; }
  68. }
  69. }