2024-02-12 10:46:18 +03:30
|
|
|
|
namespace NetinaShop.Infrastructure.Models.RestApi.Zarinpal;
|
|
|
|
|
|
|
|
|
|
|
|
public class ZarinaplPaymentVerifyResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public ZarinaplPaymentVerifyResponseData data { get; set; }
|
|
|
|
|
|
public List<object> errors { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ZarinaplPaymentVerifyResponseData
|
|
|
|
|
|
{
|
|
|
|
|
|
public int code { get; set; }
|
|
|
|
|
|
public string message { get; set; } = string.Empty;
|
|
|
|
|
|
public string card_hash { get; set; } = string.Empty;
|
|
|
|
|
|
public string card_pan { get; set; } = string.Empty;
|
2024-04-02 11:14:00 +03:30
|
|
|
|
public long ref_id { get; set; }
|
2024-02-12 10:46:18 +03:30
|
|
|
|
public string fee_type { get; set; } = string.Empty;
|
2024-04-02 11:14:00 +03:30
|
|
|
|
public long fee { get; set; }
|
2024-02-12 10:46:18 +03:30
|
|
|
|
}
|