Skip to content

Commit

Permalink
Update PaymentType to match with current implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
joaovaladares committed Jan 3, 2025
1 parent 3b2ba57 commit 417792d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/java/com/incognia/transaction/payment/PaymentType.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@
@RequiredArgsConstructor
public enum PaymentType {
CREDIT_CARD("credit_card"),
DEBIT_CARD("debit_card");
DEBIT_CARD("debit_card"),
APPLE_PAY("apple_pay"),
GOOGLE_PAY("google_pay"),
NU_PAY("nu_pay"),
PIX("pix"),
ACCOUNT_BALANCE("account_balance"),
MEAL_VOUCHER("meal_voucher"),
CASH("cash"),
PAYPAL("paypal"),
BANCOLOMBIA("bancolombia");

private final String message;

Expand Down

0 comments on commit 417792d

Please sign in to comment.