1
0
mirror of synced 2025-01-26 10:11:41 +03:00
DeliveryModuleBundle/Model/Response/ResponseCalculateSuccessful.php
Ruslan Efanov 1509fa99da Merge remote-tracking branch 'ion/master' into 3.0
# Conflicts:
#	Model/Request/RequestSave.php
#	Model/Response/ResponseLoadDeliveryData.php
#	Model/ResponseLoadDeliveryData.php
2022-08-01 12:52:46 +03:00

27 lines
586 B
PHP

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