55 lines
1.0 KiB
PHP
55 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* PHP version 7.1
|
||
|
*
|
||
|
* @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 LoyaltyCalculateRequest
|
||
|
*
|
||
|
* @package Intaro\RetailCrm\Model\Api\Response\SmsVerification
|
||
|
*/
|
||
|
class SerializedOrderReference
|
||
|
{
|
||
|
/**
|
||
|
* Внутренний ID заказа
|
||
|
*
|
||
|
* @var integer $id
|
||
|
*
|
||
|
* @Mapping\Type("integer")
|
||
|
* @Mapping\SerializedName("id")
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* Внешний ID заказа
|
||
|
*
|
||
|
* @var string $externalId
|
||
|
*
|
||
|
* @Mapping\Type("string")
|
||
|
* @Mapping\SerializedName("externalId")
|
||
|
*/
|
||
|
public $externalId;
|
||
|
|
||
|
/**
|
||
|
* Номер заказа
|
||
|
*
|
||
|
* @var string $number
|
||
|
*
|
||
|
* @Mapping\Type("string")
|
||
|
* @Mapping\SerializedName("number")
|
||
|
*/
|
||
|
public $number;
|
||
|
}
|