Skip to content

Commit

Permalink
feat: add boleto metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
cernadasjuan committed Nov 12, 2024
1 parent 5296764 commit 329fbbb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/ai/pluggy/client/response/BoletoMetadata.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package ai.pluggy.client.response;

import lombok.Data;

@Data
public class BoletoMetadata {
String digitableLine;
String barcode;
Double baseAmount;
Double interestAmount;
Double penaltyAmount;
Double discountAmount;
}
1 change: 1 addition & 0 deletions src/main/java/ai/pluggy/client/response/PaymentData.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ public class PaymentData {
String paymentMethod;
String referenceNumber;
String reason;
BoletoMetadata boletoMetadata;
}

0 comments on commit 329fbbb

Please sign in to comment.