//The first Request public class RequestModel { public Participant Sender { get; set; } public Participant Receiver { get; set; } public Transaction Transaction { get; set; } public Security Security { get; set; } } public class Participant { public Institute Institute { get; set; } public Client Client { get; set; } public Account Account { get; set; } public Device Device { get; set; } } public class Institute { public long ID { get; set; } public string Type { get; set; } } public class Client { public long ID { get; set; } public string Type { get; set; } } public class Account { public long ID { get; set; } public string Type { get; set; } } public class Device { public long ID { get; set; } public string Type { get; set; } public string AcceptorDeviceAddress { get; set; } } public class Transaction { public string TRNType { get; set; } public int Amount { get; set; } public string Currency { get; set; } } public class Security { public string SecurityKey { get; set; } }
public class Transaction { public string TRNType { get; set; } public int Amount { get; set; } public string Currency { get; set; } // new property public string OTP{ get; set; } }
public class Transaction { public string TRNType { get; set; } public int Amount { get; set; } public string Currency { get; set; } // new property public string ResponseCode{ get; set; } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)