Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
public class InitMultiPaymentRequest {

private BigDecimal price;
private BigDecimal paidPrice;
private Currency currency;
private PaymentGroup paymentGroup;
private PaymentSource paymentSource;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class MultiPaymentResponse {
private String token;
private String conversationId;
private String externalId;
private BigDecimal paidPrice;
private BigDecimal price;
private BigDecimal remainingAmount;
private LocalDateTime tokenExpireDate;
private Set<Long> paymentIds;
Expand Down
1 change: 0 additions & 1 deletion src/test/java/io/craftgate/sample/PaymentSample.java
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,6 @@ void init_multi_payment() {

InitMultiPaymentRequest request = InitMultiPaymentRequest.builder()
.price(BigDecimal.valueOf(100))
.paidPrice(BigDecimal.valueOf(100))
.buyerMemberId(7L)
.callbackUrl("https://www.your-website.com/craftgate-multi-payment-callback")
.currency(Currency.TRY)
Expand Down
Loading