34e8105583
* Loyalty program * fix dot bug for shops-exoprt option * delete credantials request from services * add CurlException for credentials catch * add catching CurlException * edit error msgs * add supportind double bonuses * add any step for bonus-input field in sale.order.ajax template * recalculate bonuses * fix bonus rounded * strtoupper for params in icml * change delivery service code
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Intaro\RetailCrm\Model\Api\Response\Loyalty;
|
|
|
|
use Intaro\RetailCrm\Model\Api\Response\AbstractApiResponseModel;
|
|
use Intaro\RetailCrm\Component\Json\Mapping;
|
|
|
|
class LoyaltyLoyaltiesResponse extends AbstractApiResponseModel
|
|
{
|
|
/**
|
|
* Результат запроса (успешный/неуспешный)
|
|
*
|
|
* @var bool $success
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("success")
|
|
*/
|
|
public $success;
|
|
|
|
/**
|
|
* Постраничная разбивка
|
|
*
|
|
* @var \Intaro\RetailCrm\Model\Api\Response\PaginationResponse $pagination
|
|
*
|
|
* @Mapping\Type("\Intaro\RetailCrm\Model\Api\Response\PaginationResponse")
|
|
* @Mapping\SerializedName("pagination")
|
|
*/
|
|
public $pagination;
|
|
|
|
/**
|
|
* Программы лояльности
|
|
*
|
|
* @var \Intaro\RetailCrm\Model\Api\Loyalty[] $loyalties
|
|
*
|
|
* @Mapping\Type("array<Intaro\RetailCrm\Model\Api\Loyalty>")
|
|
* @Mapping\SerializedName("loyalties")
|
|
*/
|
|
public $loyalties;
|
|
} |