From 2609972a6d4869374a7a9910ce583746d8a036ba Mon Sep 17 00:00:00 2001 From: krzGablo <147171777+krzGablo@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:27:29 +0100 Subject: [PATCH] Field service add (#63) --- src/Model/Fields/Account/MerchantApiConsent.php | 15 +++++++++++++++ src/Model/Objects/RequestBody/Account.php | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 src/Model/Fields/Account/MerchantApiConsent.php diff --git a/src/Model/Fields/Account/MerchantApiConsent.php b/src/Model/Fields/Account/MerchantApiConsent.php new file mode 100644 index 0000000..74981e9 --- /dev/null +++ b/src/Model/Fields/Account/MerchantApiConsent.php @@ -0,0 +1,15 @@ + Krs::class, 'legalForm' => LegalForm::class, 'categoryId' => CategoryId::class, + 'merchantApiConsent' => MerchantApiConsent::class, 'notifyByEmail' => NotifyByEmail::class, 'website' => [PointOfSale::class], 'address' => [Address::class], @@ -52,6 +54,9 @@ class Account extends Objects /** @var CategoryId */ public $categoryId; + /** @var MerchantApiConsent */ + public $merchantApiConsent; + /** @var NotifyByEmail */ public $notifyByEmail;