From c6950a2103fb8b905a31845a48d849a1eb9c047b Mon Sep 17 00:00:00 2001 From: RenCurs <34103666+RenCurs@users.noreply.github.com> Date: Fri, 18 Mar 2022 15:53:27 +0300 Subject: [PATCH] Fix data type of shipment point id for /api/v5/integration-modules/{code}/edit --- src/Model/Entity/Integration/Delivery/ShipmentPoint.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Entity/Integration/Delivery/ShipmentPoint.php b/src/Model/Entity/Integration/Delivery/ShipmentPoint.php index 0ce9a6e..6d7349f 100644 --- a/src/Model/Entity/Integration/Delivery/ShipmentPoint.php +++ b/src/Model/Entity/Integration/Delivery/ShipmentPoint.php @@ -28,9 +28,9 @@ class ShipmentPoint public $code; /** - * @var int + * @var string * - * @JMS\Type("int") + * @JMS\Type("string") * @JMS\SerializedName("shipmentPointId") */ public $shipmentPointId;