diff --git a/src/MercadoPago/Resource/Payment/PaymentBarcode.cs b/src/MercadoPago/Resource/Payment/PaymentBarcode.cs new file mode 100644 index 0000000..be35970 --- /dev/null +++ b/src/MercadoPago/Resource/Payment/PaymentBarcode.cs @@ -0,0 +1,15 @@ +using MercadoPago.Client.Payment; + +namespace MercadoPago.Resource.Payment +{ + /// + /// Barcode information. + /// + public class PaymentBarcode + { + /// + /// Barcode content + /// + public string Content { get; set; } + } +} \ No newline at end of file diff --git a/src/MercadoPago/Resource/Payment/PaymentTransactionDetails.cs b/src/MercadoPago/Resource/Payment/PaymentTransactionDetails.cs index 9cd08f7..9768009 100644 --- a/src/MercadoPago/Resource/Payment/PaymentTransactionDetails.cs +++ b/src/MercadoPago/Resource/Payment/PaymentTransactionDetails.cs @@ -1,4 +1,6 @@ -namespace MercadoPago.Resource.Payment +using MercadoPago.Client.Payment; + +namespace MercadoPago.Resource.Payment { /// /// Transaction details. @@ -45,5 +47,36 @@ public class PaymentTransactionDetails /// BACEN identifier for Pix /// public string TransactionId { get; set; } + + /// + /// Acquirer reference + /// + public string AcquirerReference { get; set; } + + /// + /// Barcode information + /// + public PaymentBarcode Barcode { get; set; } + + /// + /// Boleto digitable line + /// + public string DigitableLine { get; set; } + + /// + /// Verification Code + /// + public string VerificationCode { get; set; } + + /// + /// Payable Deferral Period + /// + public string PayableDeferralPeriod { get; set; } + + /// + /// Bank transfer id + /// + public string BankTransferId { get; set; } + } }