From e6ca7a484d9cc213fb00c34ebf7cb55ace892c04 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 31 Mar 2021 18:00:22 +0200 Subject: Initial commit --- .../Models/Api/TTransactionSummary.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/IOL.VippsEcommerce/Models/Api/TTransactionSummary.cs (limited to 'src/IOL.VippsEcommerce/Models/Api/TTransactionSummary.cs') diff --git a/src/IOL.VippsEcommerce/Models/Api/TTransactionSummary.cs b/src/IOL.VippsEcommerce/Models/Api/TTransactionSummary.cs new file mode 100644 index 0000000..786bcaa --- /dev/null +++ b/src/IOL.VippsEcommerce/Models/Api/TTransactionSummary.cs @@ -0,0 +1,42 @@ +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; } + } +} \ No newline at end of file -- cgit v1.3