1
0
mirror of synced 2025-01-26 10:11:41 +03:00
DeliveryModuleBundle/Model/StatusInfo.php

42 lines
896 B
PHP
Raw Normal View History

2019-12-26 17:47:33 +03:00
<?php
namespace RetailCrm\DeliveryModuleBundle\Model;
use JMS\Serializer\Annotation as Serializer;
class StatusInfo
{
/**
* Код статуса доставки
2020-08-18 17:39:55 +03:00
*
2019-12-26 17:47:33 +03:00
* @var string
*
* @Serializer\Groups({"get", "response"})
* @Serializer\SerializedName("code")
* @Serializer\Type("string")
*/
public $code;
/**
* Дата обновления статуса доставки
2020-08-18 17:39:55 +03:00
*
2019-12-26 17:47:33 +03:00
* @var \DateTime
*
* @Serializer\Groups({"get", "response"})
* @Serializer\SerializedName("updatedAt")
* @Serializer\Type("DateTime<'Y-m-d\TH:i:sP'>")
*/
public $updatedAt;
/**
* Комментарий к статусу
2020-08-18 17:39:55 +03:00
*
2019-12-26 17:47:33 +03:00
* @var string
*
* @Serializer\Groups({"get", "response"})
* @Serializer\SerializedName("comment")
* @Serializer\Type("string")
*/
public $comment;
}