-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Payment] Embedded Payment-Paypal project into Payment project like a…
… dependency #1003
- Loading branch information
1 parent
fd8d658
commit 907d016
Showing
14 changed files
with
37 additions
and
142 deletions.
There are no files selected for viewing
40 changes: 0 additions & 40 deletions
40
payment-paypal/src/main/java/com/yas/payment/paypal/service/OrderService.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
payment-paypal/src/main/java/com/yas/payment/paypal/viewmodel/OrderVm.java
This file was deleted.
Oops, something went wrong.
60 changes: 0 additions & 60 deletions
60
payment-paypal/src/test/java/com/yas/payment/paypal/service/OrderServiceTest.java
This file was deleted.
Oops, something went wrong.
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
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
6 changes: 0 additions & 6 deletions
6
payment/src/main/java/com/yas/payment/viewmodel/CreatePaymentRequest.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
payment/src/main/java/com/yas/payment/viewmodel/CreatePaymentResponse.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
payment/src/main/java/com/yas/payment/viewmodel/InitPaymentRequest.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,6 @@ | ||
package com.yas.payment.viewmodel; | ||
|
||
import java.math.BigDecimal; | ||
|
||
public record InitPaymentRequest(String paymentMethod, BigDecimal totalPrice, String checkoutId) { | ||
} |
4 changes: 4 additions & 0 deletions
4
payment/src/main/java/com/yas/payment/viewmodel/InitPaymentResponse.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,4 @@ | ||
package com.yas.payment.viewmodel; | ||
|
||
public record InitPaymentResponse(String status, String paymentId, String redirectUrl) { | ||
} |
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