1
0
mirror of synced 2024-11-23 05:06:02 +03:00
aliexpress-top-client/tests/RetailCrm/Test/TestDto.php
2020-09-29 13:18:18 +03:00

38 lines
776 B
PHP

<?php
/**
* PHP version 7.3
*
* @category TestDto
* @package RetailCrm\Test
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
namespace RetailCrm\Test;
use JMS\Serializer\Annotation as JMS;
use RetailCrm\Interfaces\RequestDtoInterface;
/**
* Class TestDto
*
* @category TestDto
* @package RetailCrm\Test
* @author RetailDriver LLC <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see https://help.retailcrm.ru
*/
class TestDto implements RequestDtoInterface
{
/**
* @var string $modelContent
*
* @JMS\Type("string")
* @JMS\SerializedName("modelContent")
*/
public $modelContent = 'contentData';
}