1
0
mirror of synced 2024-11-23 22:06:11 +03:00
bitrix-module/intaro.retailcrm/lib/model/api/dictionaryelements.php

38 lines
666 B
PHP
Raw Normal View History

<?php
namespace Intaro\RetailCrm\Model\Api;
use Intaro\RetailCrm\Component\Json\Mapping;
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;
}