%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
/**
* The type of the loyalty event.
*/
class LoyaltyEventType
{
/**
* Points are added to a loyalty account for a purchase.
*/
public const ACCUMULATE_POINTS = 'ACCUMULATE_POINTS';
/**
* A loyalty reward is created. For more information, see
* [Loyalty rewards](https://developer.squareup.com/docs/loyalty-api/overview/#loyalty-overview-loyalty-
* rewards).
*/
public const CREATE_REWARD = 'CREATE_REWARD';
/**
* A loyalty reward is redeemed.
*/
public const REDEEM_REWARD = 'REDEEM_REWARD';
/**
* A loyalty reward is deleted.
*/
public const DELETE_REWARD = 'DELETE_REWARD';
/**
* Loyalty points are manually adjusted.
*/
public const ADJUST_POINTS = 'ADJUST_POINTS';
/**
* Loyalty points are expired according to the
* expiration policy of the loyalty program.
*/
public const EXPIRE_POINTS = 'EXPIRE_POINTS';
/**
* Some other loyalty event occurred.
*/
public const OTHER = 'OTHER';
}