using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class TTransactionSummary
{
///
/// Total amount captured
///
/// Total amount captured
[JsonPropertyName("capturedAmount")]
public int? CapturedAmount { get; set; }
///
/// Total refunded amount of the order
///
/// Total refunded amount of the order
[JsonPropertyName("refundedAmount")]
public int? RefundedAmount { get; set; }
///
/// Total remaining amount to capture
///
/// Total remaining amount to capture
[JsonPropertyName("remainingAmountToCapture")]
public int? RemainingAmountToCapture { get; set; }
///
/// Total remaining amount to refund
///
/// Total remaining amount to refund
[JsonPropertyName("remainingAmountToRefund")]
public int? RemainingAmountToRefund { get; set; }
///
/// Bank Identification Number, first 6 digit of card number
///
/// Bank Identification Number, first 6 digit of card number
[JsonPropertyName("bankIdentificationNumber")]
public string BankIdentificationNumber { get; set; }
}
}