1
0
mirror of synced 2025-01-27 18:51:40 +03:00

27 lines
499 B
PHP
Raw Normal View History

2019-12-26 17:47:33 +03:00
<?php
2020-09-08 16:27:37 +03:00
namespace RetailCrm\DeliveryModuleBundle\Model\Request;
2019-12-26 17:47:33 +03:00
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;
}