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.
 
 
 

31 lines
1.2 KiB

namespace Common.Model
{
public class KycResponse
{
public string userId { get; set; }
public string firstName { get; set; }
public string middleName { get; set; }
public string lastName { get; set; }
public string nickName { get; set; }
public string mobileNumber { get; set; }
public string email { get; set; }
public string gender { get; set; }
public string dateOfBirth { get; set; }
public string nativeCountry { get; set; }
public string country { get; set; }
public string occupation { get; set; }
public string primaryBankName { get; set; }
public string primaryAccountNumber { get; set; }
public string verificationIdType { get; set; }
public string verificationIdNumber { get; set; }
public string expiryDate { get; set; }
public string sourceOfFund { get; set; }
public string regIdcardFrontUrl { get; set; }
public string regIdcardBackUrl { get; set; }
public string passbookUrl { get; set; }
public string passportUrl { get; set; }
public string selfieUrl { get; set; }
public string province { get; set; }
public string provinceId { get; set; }
}
}