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 @@ -47,6 +47,7 @@ public class InitCheckoutPaymentRequest {
protected boolean forceThreeDS;
protected boolean forceAuthForNonCreditCards;
protected boolean depositPayment;
protected boolean guestCheckout;
protected Long ttl;
protected List<CustomInstallment> customInstallments;
protected List<PaymentItem> items;
Expand Down
1 change: 1 addition & 0 deletions src/test/java/io/craftgate/sample/PaymentSample.java
Original file line number Diff line number Diff line change
Expand Up @@ -801,6 +801,7 @@ void init_checkout_payment() {
.conversationId("456d1297-908e-4bd6-a13b-4be31a6e47d5")
.paymentGroup(PaymentGroup.LISTING_OR_SUBSCRIPTION)
.paymentPhase(PaymentPhase.AUTH)
.guestCheckout(false)
.items(items)
.build();

Expand Down