%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;
/**
* Indicates the gift card activity type.
*/
class GiftCardActivityType
{
/**
* Activated a gift card with a balance.
*/
public const ACTIVATE = 'ACTIVATE';
/**
* Loaded a gift card with additional funds.
*/
public const LOAD = 'LOAD';
/**
* Redeemed a gift card.
*/
public const REDEEM = 'REDEEM';
/**
* Cleared a gift card balance to zero.
*/
public const CLEAR_BALANCE = 'CLEAR_BALANCE';
/**
* Permanently blocked a gift card from a balance-changing
* activity.
*/
public const DEACTIVATE = 'DEACTIVATE';
/**
* Manually increased a gift card balance.
*/
public const ADJUST_INCREMENT = 'ADJUST_INCREMENT';
/**
* Manually decreased a gift card balance.
*/
public const ADJUST_DECREMENT = 'ADJUST_DECREMENT';
/**
* Added money to a gift card because a transaction
* paid with this gift card was refunded.
*/
public const REFUND = 'REFUND';
/**
* Added money to a gift card because a transaction
* not linked to this gift card was refunded
* to this gift card.
*/
public const UNLINKED_ACTIVITY_REFUND = 'UNLINKED_ACTIVITY_REFUND';
/**
* Imported a third-party gift card.
*/
public const IMPORT = 'IMPORT';
/**
* Temporarily blocked a gift card from balance-changing
* activities.
*/
public const BLOCK = 'BLOCK';
/**
* Unblocked a gift card. It can resume balance-changing activities.
*/
public const UNBLOCK = 'UNBLOCK';
/**
* A third-party gift card was imported with a balance.
* The import is reversed.
*/
public const IMPORT_REVERSAL = 'IMPORT_REVERSAL';
}