1
0
mirror of synced 2025-01-08 18:37:08 +03:00
DeliveryModuleBundle/Model/ResponseSuccessful.php
2020-02-19 19:00:09 +03:00

18 lines
397 B
PHP

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