1
0
mirror of synced 2024-11-21 21:06:07 +03:00

Added attachedTag field to customer

This commit is contained in:
Max Baranikov 2023-06-23 13:36:00 +04:00
parent 86d280ba47
commit aa3c99fa6d
2 changed files with 9 additions and 1 deletions

View File

@ -120,6 +120,15 @@ class Customer implements CustomerInterface
*/
public $tags;
/**
* @var string
*
* @JMS\Type("string")
* @JMS\SerializedName("attachedTag")
*/
public $attachedTag;
/**
* @var string[]
*

View File

@ -34,5 +34,4 @@ class NonWorkingDay
* @JMS\SerializedName("end_date")
*/
public $endDate;
}