1
0
mirror of synced 2024-11-24 06:16:27 +03:00

Fix data of store in "RequestSave" (#132)

This commit is contained in:
RenCurs 2021-12-14 15:18:01 +03:00 committed by GitHub
parent e76bb59970
commit 6a8f9ec589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -67,14 +67,6 @@ class RequestSave
*/
public $store;
/**
* @var \RetailCrm\Api\Model\Callback\Entity\Delivery\SerializedStoreWeekOpeningHours
*
* @JMS\Type("RetailCrm\Api\Model\Callback\Entity\Delivery\SerializedStoreWeekOpeningHours")
* @JMS\SerializedName("storeworkTime")
*/
public $storeworkTime;
/**
* @var string
*

View File

@ -34,4 +34,12 @@ class Store
* @JMS\SerializedName("name")
*/
public $name;
/**
* @var \RetailCrm\Api\Model\Callback\Entity\Delivery\SerializedStoreWeekOpeningHours
*
* @JMS\Type("RetailCrm\Api\Model\Callback\Entity\Delivery\SerializedStoreWeekOpeningHours")
* @JMS\SerializedName("workTime")
*/
public $workTime;
}