-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fa126d
commit 1fc8bad
Showing
15 changed files
with
118 additions
and
63 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
22 changes: 22 additions & 0 deletions
22
...on-adjustment-example/src/main/java/com/adyen/checkout/request/CapturePaymentRequest.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,22 @@ | ||
package com.adyen.checkout.request; | ||
|
||
public class CapturePaymentRequest { | ||
public String reference; | ||
public long amount; | ||
|
||
public long getAmount() { | ||
return amount; | ||
} | ||
|
||
public void setAmount(long amount) { | ||
this.amount = amount; | ||
} | ||
|
||
public String getReference() { | ||
return reference; | ||
} | ||
|
||
public void setReference(String reference) { | ||
this.reference = reference; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...n-adjustment-example/src/main/java/com/adyen/checkout/request/ReversalPaymentRequest.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,13 @@ | ||
package com.adyen.checkout.request; | ||
|
||
public class ReversalPaymentRequest { | ||
public String reference; | ||
|
||
public String getReference() { | ||
return reference; | ||
} | ||
|
||
public void setReference(String reference) { | ||
this.reference = reference; | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...justment-example/src/main/java/com/adyen/checkout/request/UpdatePaymentAmountRequest.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,22 @@ | ||
package com.adyen.checkout.request; | ||
|
||
public class UpdatePaymentAmountRequest { | ||
public String reference; | ||
public long amount; | ||
|
||
public long getAmount() { | ||
return amount; | ||
} | ||
|
||
public void setAmount(long amount) { | ||
this.amount = amount; | ||
} | ||
|
||
public String getReference() { | ||
return reference; | ||
} | ||
|
||
public void setReference(String reference) { | ||
this.reference = reference; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -425,7 +425,6 @@ a:hover { | |
} | ||
|
||
.admin-panel-token-container { | ||
background-color: white; | ||
padding: 16px; | ||
} | ||
|
||
|
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
Oops, something went wrong.