53 lines
1019 B
PHP
53 lines
1019 B
PHP
<?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 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;
|
|
}
|