1
0
Fork 0
mirror of synced 2025-04-10 04:21:02 +00:00
DeliveryModuleBundle/Model/ResponseCalculateSuccessful.php
2020-02-19 19:00:09 +03:00

17 lines
416 B
PHP

<?php
namespace RetailCrm\DeliveryModuleBundle\Model;
use JMS\Serializer\Annotation as Serializer;
class ResponseCalculateSuccessful extends AbstractResponseSuccessful
{
/**
* @var mixed
*
* @Serializer\Groups({"get", "response"})
* @Serializer\SerializedName("result")
* @Serializer\Type("array<RetailCrm\DeliveryModuleBundle\Model\ResponseCalculate>")
*/
public $result;
}