Skip to content

Commit

Permalink
Update items with tax_rate
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko committed Sep 12, 2024
1 parent 0870785 commit b59b362
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/checkout/payments/Product.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public final class Product {
@SerializedName("total_amount")
private Long totalAmount;

@SerializedName("tax_rate")
private Long taxRate;

@SerializedName("tax_amount")
private Long taxAmount;

Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/checkout/payments/request/Order.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ public final class Order {
@SerializedName("total_amount")
private Long totalAmount;

@SerializedName("tax_rate")
private Long taxRate;

@SerializedName("tax_amount")
private Long taxAmount;

Expand Down

0 comments on commit b59b362

Please sign in to comment.