1
0
Fork 0
mirror of synced 2025-04-06 06:43:32 +03:00
DeliveryModuleBundle/Model/Request/RequestPrint.php
2020-09-08 16:34:59 +03:00

26 lines
499 B
PHP

<?php
namespace RetailCrm\DeliveryModuleBundle\Model\Request;
use JMS\Serializer\Annotation as Serializer;
class RequestPrint
{
/**
* @var string
*
* @Serializer\Groups({"request"})
* @Serializer\SerializedName("type")
* @Serializer\Type("string")
*/
public $type;
/**
* @var string[]
*
* @Serializer\Groups({"request"})
* @Serializer\SerializedName("deliveryIds")
* @Serializer\Type("array")
*/
public $deliveryIds;
}