2022-03-02 15:40:53 +03:00
|
|
|
<?php
|
|
|
|
|
2024-04-29 11:44:31 +03:00
|
|
|
/**
|
|
|
|
* @category Integration
|
|
|
|
* @package Intaro\RetailCrm\Model\Api
|
|
|
|
* @author RetailCRM <integration@retailcrm.ru>
|
|
|
|
* @license MIT
|
|
|
|
* @link http://retailcrm.ru
|
|
|
|
* @see http://retailcrm.ru/docs
|
|
|
|
*/
|
|
|
|
|
2022-03-02 15:40:53 +03:00
|
|
|
namespace Intaro\RetailCrm\Model\Api;
|
|
|
|
|
|
|
|
use Intaro\RetailCrm\Component\Json\Mapping;
|
|
|
|
|
2024-04-29 11:44:31 +03:00
|
|
|
/**
|
|
|
|
* Class DictionaryElements
|
|
|
|
*
|
|
|
|
* @package Intaro\RetailCrm\Model\Api
|
|
|
|
*/
|
2022-03-02 15:40:53 +03:00
|
|
|
class DictionaryElements
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Название элемента
|
|
|
|
*
|
|
|
|
* @var string $name
|
|
|
|
*
|
|
|
|
* @Mapping\Type("string")
|
|
|
|
* @Mapping\SerializedName("name")
|
|
|
|
*/
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Код элемента
|
|
|
|
*
|
|
|
|
* @var string $code
|
|
|
|
*
|
|
|
|
* @Mapping\Type("string")
|
|
|
|
* @Mapping\SerializedName("code")
|
|
|
|
*/
|
|
|
|
public $code;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Код элемента
|
|
|
|
*
|
|
|
|
* @var string $ordering
|
|
|
|
*
|
|
|
|
* @Mapping\Type("string")
|
|
|
|
* @Mapping\SerializedName("ordering")
|
|
|
|
*/
|
|
|
|
public $ordering;
|
2024-04-29 11:44:31 +03:00
|
|
|
}
|