From b0b21b3e7f8c92c9d0393cb9fa586235de576f55 Mon Sep 17 00:00:00 2001 From: Bart van Hoekelen Date: Sun, 30 Jul 2023 23:16:19 +0200 Subject: [PATCH] Add payment method point of sale (#692) --- src/Types/PaymentMethod.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Types/PaymentMethod.php b/src/Types/PaymentMethod.php index e93b1d9b..7c743656 100644 --- a/src/Types/PaymentMethod.php +++ b/src/Types/PaymentMethod.php @@ -129,4 +129,9 @@ class PaymentMethod * @link https://www.mollie.com/en/payments/in3 */ public const IN3 = "in3"; + + /** + * @link https://docs.mollie.com/point-of-sale/overview + */ + public const POINT_OF_SALE = "pointofsale"; }