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
125 lines
2.4 KiB
PHP
125 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Intaro\RetailCrm\Model\Api;
|
|
|
|
use Intaro\RetailCrm\Component\Json\Mapping;
|
|
|
|
/**
|
|
* Class Loyalty
|
|
*
|
|
* @package Intaro\RetailCrm\Model\Api
|
|
*/
|
|
class Loyalty
|
|
{
|
|
/**
|
|
* Компании
|
|
*
|
|
* @var array $levels
|
|
*
|
|
* @Mapping\Type("array<Intaro\RetailCrm\Model\Api\LoyaltyLevel>")
|
|
* @Mapping\SerializedName("levels")
|
|
*/
|
|
public $levels;
|
|
|
|
/**
|
|
* Активна
|
|
*
|
|
* @var bool $active
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("active")
|
|
*/
|
|
public $active;
|
|
|
|
/**
|
|
* Заблокирована
|
|
*
|
|
* @var bool $blocked
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("blocked")
|
|
*/
|
|
public $blocked;
|
|
|
|
/**
|
|
* Id программы лояльности
|
|
*
|
|
* @var int $id
|
|
*
|
|
* @Mapping\Type("integer")
|
|
* @Mapping\SerializedName("id")
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* Заблокирована
|
|
*
|
|
* @var string $name
|
|
*
|
|
* @Mapping\Type("string")
|
|
* @Mapping\SerializedName("name")
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* Заблокирована
|
|
*
|
|
* @var bool $confirmSmsCharge
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("confirmSmsCharge")
|
|
*/
|
|
public $confirmSmsCharge;
|
|
|
|
/**
|
|
* Заблокирована
|
|
*
|
|
* @var bool $confirmSmsRegistration
|
|
*
|
|
* @Mapping\Type("boolean")
|
|
* @Mapping\SerializedName("confirmSmsRegistration")
|
|
*/
|
|
public $confirmSmsRegistration;
|
|
|
|
/**
|
|
* Дата создания
|
|
*
|
|
* @var \DateTime $createdAt
|
|
*
|
|
* @Mapping\Type("DateTime<'Y-m-d H:i:s'>")
|
|
* @Mapping\SerializedName("createdAt")
|
|
*/
|
|
public $createdAt;
|
|
|
|
/**
|
|
* Дата запуска
|
|
*
|
|
* @var \DateTime $activatedAt
|
|
*
|
|
* @Mapping\Type("DateTime<'Y-m-d H:i:s'>")
|
|
* @Mapping\SerializedName("activatedAt")
|
|
*/
|
|
public $activatedAt;
|
|
|
|
/**
|
|
* Дата остановки
|
|
*
|
|
* @var \DateTime $deactivatedAt
|
|
*
|
|
* @Mapping\Type("DateTime<'Y-m-d H:i:s'>")
|
|
* @Mapping\SerializedName("deactivatedAt")
|
|
*/
|
|
public $deactivatedAt;
|
|
|
|
/**
|
|
* Дата блокировки
|
|
*
|
|
* @var \DateTime $blockedAt
|
|
*
|
|
* @Mapping\Type("DateTime<'Y-m-d H:i:s'>")
|
|
* @Mapping\SerializedName("blockedAt")
|
|
*/
|
|
public $blockedAt;
|
|
}
|
|
|