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

53 lines
957 B
PHP
Raw Normal View History

<?php
/**
* @category Integration
* @package Intaro\RetailCrm\Model\Api
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Api;
use Intaro\RetailCrm\Component\Json\Mapping;
/**
* Class DictionaryElements
*
* @package Intaro\RetailCrm\Model\Api
*/
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;
}