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.
 
 
 

80 lines
3.0 KiB

using System.Collections.Generic;
namespace Common.Model
{
public class LoginResponse : JsonRxResponse
{
public string userId { get; set; }
public string senderId { get; set; }
public object firstName { get; set; }
//public object middleName { get; set; }
//public object lastName { get; set; }
//public object nickName { get; set; }
public string email { get; set; }
public string customerEmail { get; set; }
public object mobileNumber { get; set; }
public string rewardPoint { get; set; }
public object walletNumber { get; set; }
public string availableBalance { get; set; }
public object primaryBankName { get; set; }
public string accessCode { get; set; }
public object dpUrl { get; set; }
public bool kyc { get; set; }
public bool verified { get; set; }
public bool active { get; set; }
public object cmRegistrationId { get; set; }
public bool isReferred { get; set; }
public object country { get; set; }
public object province { get; set; }
public object provinceId { get; set; }
public object sourceId { get; set; }
//public string idType { get; set; }
//public string idNumber { get; set; }
public string countryCode { get; set; }
public string yearlyLimit { get; set; }
public string dob { get; set; }
public string pennyTestStatus { get; set; }
//public string primaryBankAccount { get; set; }
public string kftcClientId { get; set; }
public IList<AppUpdate> appUpdate { get; set; }
public string accessTokenRegTime { get; set; }
public string accessTokenExpTime { get; set; }
public string redirectTo { get; set; }
public bool isExistingCustomer { get; set; }
public bool hasVerifiedOTP { get; set; }
public int hasUpdatedDefaultCredentials { get; set; }
public bool IsBiometricLogin { get; set; }
public string BiometricLoginType { get; set; }
public string referralCode { get; set; } // 추천인 코드 추가 12.09 By Justin
public string agreeYn { get; set; } // 이용자 정보 동의 매개변수 추가 20.01.03 Justin
public string notificationCount { get; set; }
public string idExpiryDate { get; set; }
public string IdStatus { get; set; }
public string showInviteCode { get; set; }
public string RewardPoints { get; set; }
public string ResidenceType { get; set; }
public string UseNFC { get; set; }
public string SelfieDocPath { get; set; }
public bool KycVerified { get; set; }
public string KycStatus { get; set; }
public string KycStatusMsg { get; set; }
}
public class AppUpdate
{
public string OS { get; set; }
public string Build { get; set; }
public string Version { get; set; }
public string Critical { get; set; }
public string Info { get; set; }
}
}