diff --git a/src/Enum/Payments/PaymentInvoiceType.php b/src/Enum/Payments/PaymentInvoiceType.php new file mode 100644 index 0000000..8a96faf --- /dev/null +++ b/src/Enum/Payments/PaymentInvoiceType.php @@ -0,0 +1,21 @@ +") + * @JMS\SerializedName("items") + */ + public $items; + + /** + * @var \RetailCrm\Api\Model\Entity\Customers\Customer + * + * @JMS\Type("RetailCrm\Api\Model\Entity\Customers\Customer") + * @JMS\SerializedName("customer") + */ + public $customer; +} diff --git a/src/Model/Callback/Response/Payments/Item.php b/src/Model/Callback/Response/Payments/Item.php index 60b354d..47d85db 100644 --- a/src/Model/Callback/Response/Payments/Item.php +++ b/src/Model/Callback/Response/Payments/Item.php @@ -82,4 +82,12 @@ class Item * @JMS\SerializedName("productCode") */ public $productCode; + + /** + * @var string + * + * @JMS\Type("string") + * @JMS\SerializedName("markingCode") + */ + public $markingCode; }