Skip to content

Commit

Permalink
Add fields
Browse files Browse the repository at this point in the history
  • Loading branch information
gdeandradero committed Feb 23, 2024
1 parent 63b11ec commit 955315c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.mercadopago.resources.payment;

import lombok.Builder;
import lombok.Getter;

/** PaymentBarcode class. */
@Getter
@Builder
public class PaymentBarcode {
/** Barcode content. */
private final String content;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.mercadopago.resources.payment;

import java.math.BigDecimal;

import lombok.Getter;

/** PaymentTransactionDetails class. */
Expand Down Expand Up @@ -35,4 +36,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 955315c

Please sign in to comment.