-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update-installment-service
- Loading branch information
Showing
7 changed files
with
82 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ public enum ApmType { | |
ISPAY, | ||
CHIPPIN, | ||
PAYMOB, | ||
BIZUM, | ||
FUND_TRANSFER, | ||
CASH_ON_DELIVERY | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,5 +32,6 @@ public enum PaymentProvider { | |
ISPAY, | ||
CHIPPIN, | ||
PAYMOB, | ||
BIZUM, | ||
OFFLINE, | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/craftgate/request/RefundPaymentTransactionMarkAsRefundedRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.craftgate.request; | ||
|
||
import io.craftgate.model.RefundDestinationType; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class RefundPaymentTransactionMarkAsRefundedRequest { | ||
|
||
private Long paymentTransactionRefundId; | ||
private String conversationId; | ||
private String description; | ||
|
||
@Builder.Default | ||
private RefundDestinationType refundDestinationType = RefundDestinationType.PROVIDER; | ||
|
||
@Builder.Default | ||
private Boolean chargeFromMe = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters