Skip to content
Open
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 @@ -24,4 +24,5 @@ public class CreateProductRequest {
private String description;
private boolean multiPayment;
private Set<Integer> enabledInstallments;
private String basketIdentifier;
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ public class UpdateProductRequest {
private LocalDateTime expiresAt;
private boolean multiPayment;
private Set<Integer> enabledInstallments;
private String basketIdentifier;
}
1 change: 1 addition & 0 deletions src/main/java/io/craftgate/response/ProductResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ public class ProductResponse {
private String channel;
private boolean multiPayment;
private LocalDateTime expiresAt;
private String basketIdentifier;
}