53 lines
957 B
PHP
53 lines
957 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 Payment
|
|
*
|
|
* @package Intaro\RetailCrm\Model\Api
|
|
*/
|
|
class Payment extends AbstractApiModel
|
|
{
|
|
/**
|
|
* Внутренний ID
|
|
*
|
|
* @var integer $id
|
|
*
|
|
* @Mapping\Type("integer")
|
|
* @Mapping\SerializedName("id")
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* Тип оплаты
|
|
*
|
|
* @var string $type
|
|
*
|
|
* @Mapping\Type("string")
|
|
* @Mapping\SerializedName("type")
|
|
*/
|
|
public $type;
|
|
|
|
/**
|
|
* Внешний ID платежа
|
|
*
|
|
* @var string $externalId
|
|
*
|
|
* @Mapping\Type("string")
|
|
* @Mapping\SerializedName("externalId")
|
|
*/
|
|
public $externalId;
|
|
}
|