From aa3c99fa6d139ddefc31b3c79fc5ea9adaf2af26 Mon Sep 17 00:00:00 2001 From: Max Baranikov Date: Fri, 23 Jun 2023 13:36:00 +0400 Subject: [PATCH] Added attachedTag field to customer --- src/Model/Entity/Customers/Customer.php | 9 +++++++++ src/Model/Entity/Settings/NonWorkingDay.php | 1 - 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Model/Entity/Customers/Customer.php b/src/Model/Entity/Customers/Customer.php index 7db3811..bad3cf3 100644 --- a/src/Model/Entity/Customers/Customer.php +++ b/src/Model/Entity/Customers/Customer.php @@ -120,6 +120,15 @@ class Customer implements CustomerInterface */ public $tags; + + /** + * @var string + * + * @JMS\Type("string") + * @JMS\SerializedName("attachedTag") + */ + public $attachedTag; + /** * @var string[] * diff --git a/src/Model/Entity/Settings/NonWorkingDay.php b/src/Model/Entity/Settings/NonWorkingDay.php index 8235138..e2e011d 100644 --- a/src/Model/Entity/Settings/NonWorkingDay.php +++ b/src/Model/Entity/Settings/NonWorkingDay.php @@ -34,5 +34,4 @@ class NonWorkingDay * @JMS\SerializedName("end_date") */ public $endDate; - }