Skip to content

Commit

Permalink
#330 Add support for the Klarna One payment method
Browse files Browse the repository at this point in the history
  • Loading branch information
Viincenttt committed Dec 2, 2023
1 parent 11a05d5 commit 563b6fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Mollie.Api/Models/Payment/PaymentMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public static class PaymentMethod {
public const string Refund = "refund";
public const string KlarnaPayLater = "klarnapaylater";
public const string KlarnaSliceIt = "klarnasliceit";
public const string KlarnaOne = "klarna";
public const string Przelewy24 = "przelewy24";
public const string ApplePay = "applepay";
public const string MealVoucher = "mealvoucher";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public class PaymentResponseFactoryTests {
[InlineData(PaymentMethod.Refund, typeof(PaymentResponse))]
[InlineData(PaymentMethod.KlarnaPayLater, typeof(PaymentResponse))]
[InlineData(PaymentMethod.KlarnaSliceIt, typeof(PaymentResponse))]
[InlineData(PaymentMethod.KlarnaOne, typeof(PaymentResponse))]
[InlineData(PaymentMethod.Przelewy24, typeof(PaymentResponse))]
[InlineData(PaymentMethod.ApplePay, typeof(PaymentResponse))]
[InlineData(PaymentMethod.MealVoucher, typeof(PaymentResponse))]
Expand Down

0 comments on commit 563b6fc

Please sign in to comment.