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
40 lines
1.0 KiB
PHP
40 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 LoyaltyLoyaltyResponse extends AbstractApiResponseModel
|
|
{
|
|
/**
|
|
* Результат запроса (успешный/неуспешный)
|
|
*
|
|
* @var bool $success
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("success")
|
|
*/
|
|
public $success;
|
|
|
|
/**
|
|
* Программа лояльности
|
|
*
|
|
* @var \Intaro\RetailCrm\Model\Api\Loyalty $loyalty
|
|
*
|
|
* @Mapping\Type("\Intaro\RetailCrm\Model\Api\Loyalty")
|
|
* @Mapping\SerializedName("loyalty")
|
|
*/
|
|
public $loyalty;
|
|
|
|
/**
|
|
* Требуемые при регистрации поля
|
|
*
|
|
* @var \Intaro\RetailCrm\Model\Api\RequiredFields[] $requiredFields
|
|
*
|
|
* @Mapping\Type("array<Intaro\RetailCrm\Model\Api\RequiredFields>")
|
|
* @Mapping\SerializedName("requiredFields")
|
|
*/
|
|
public $requiredFields;
|
|
}
|