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.
 
 

41 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wing.Model
{
public class WingSendTxnResponseCash
{
// Validate Response
//public string receiver_name { get; set; }
//public string receiver_phone { get; set; }
//public string receiver_currency { get; set; }
//public string amount { get; set; }
//public string total_amount { get; set; }
//public string exchange_rate { get; set; }
//public string fee { get; set; }
public string fee { get; set; }
public string amount { get; set; }
public string receiver_name { get; set; }
public string receiver_account { get; set; }
public string receiver_currency { get; set; }
public string total_amount { get; set; }
public string exchange_rate { get; set; }
public string balance { get; set; }
public string passcode { get; set; }
public string transaction_id { get; set; }
public string transaction_date { get; set; }
public string receiver_phone { get; set; }
public string ext_transaction_id { get; set; }
}
public class WingSendTxnFailedResponse
{
public string error { get; set; }
public string error_description { get; set; }
}
}