1
0
mirror of synced 2025-01-29 03:21:44 +03:00
DeliveryModuleBundle/Model/Response/ResponseAutocompleteSuccessful.php

27 lines
596 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\Response;
2019-12-26 17:47:33 +03:00
use JMS\Serializer\Annotation as Serializer;
class ResponseAutocompleteSuccessful
{
/**
2020-08-18 17:39:55 +03:00
* @var bool
2019-12-26 17:47:33 +03:00
*
* @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\ResponseAutocompleteItem>")
*/
public $result;
}