Skip to content

Commit

Permalink
Merge pull request #275 from mercadopago/feature/add-fields-on-transa…
Browse files Browse the repository at this point in the history
…ction-details

Add fields on transaction details response
  • Loading branch information
gdeandradero authored Feb 26, 2024
2 parents 63b11ec + c55f0fa commit 4d30a05
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.mercadopago.resources.payment;

import lombok.Getter;

/** PaymentBarcode class. */
@Getter
public class PaymentBarcode {
/** Barcode content. */
private String content;
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,19 @@ public class PaymentTransactionDetails {

/** BACEN identifier for Pix. */
private String transactionId;

/** Barcode digitable line. */
private String digitableLine;

/** Verification code. */
private String verificationCode;

/** Payable deferral period. */
private String payableDeferralPeriod;

/** Bank transfer id. */
private String bankTransferId;

/** Barcode data. */
private PaymentBarcode barcode;
}

0 comments on commit 4d30a05

Please sign in to comment.