Skip to content

Commit f1841d1

Browse files
authored
Update ModificationResult.java
Removed underscore prefix for ResponseEnum attributes
1 parent 9e2c8e3 commit f1841d1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/com/adyen/model/payment/ModificationResult.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,21 @@ public class ModificationResult {
5050
* Indicates if the modification request has been received for processing.
5151
*/
5252
public enum ResponseEnum {
53-
_CAPTURE_RECEIVED_("[capture-received]"),
53+
CAPTURE_RECEIVED_("[capture-received]"),
5454

55-
_CANCEL_RECEIVED_("[cancel-received]"),
55+
CANCEL_RECEIVED_("[cancel-received]"),
5656

57-
_REFUND_RECEIVED_("[refund-received]"),
57+
REFUND_RECEIVED_("[refund-received]"),
5858

59-
_CANCELORREFUND_RECEIVED_("[cancelOrRefund-received]"),
59+
CANCELORREFUND_RECEIVED_("[cancelOrRefund-received]"),
6060

61-
_ADJUSTAUTHORISATION_RECEIVED_("[adjustAuthorisation-received]"),
61+
ADJUSTAUTHORISATION_RECEIVED_("[adjustAuthorisation-received]"),
6262

63-
_DONATION_RECEIVED_("[donation-received]"),
63+
DONATION_RECEIVED_("[donation-received]"),
6464

65-
_TECHNICAL_CANCEL_RECEIVED_("[technical-cancel-received]"),
65+
TECHNICAL_CANCEL_RECEIVED_("[technical-cancel-received]"),
6666

67-
_VOIDPENDINGREFUND_RECEIVED_("[voidPendingRefund-received]"),
67+
VOIDPENDINGREFUND_RECEIVED_("[voidPendingRefund-received]"),
6868

6969
AUTHORISED("Authorised");
7070

0 commit comments

Comments
 (0)