Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
GiftCardActivityAdjustDecrementReason.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates the reason for deducting money from a [gift card]($m/GiftCard). */ class GiftCardActivityAdjustDecrementReason { /** * The balance was decreased because the seller detected suspicious or fraudulent activity * on the gift card. */ public const SUSPICIOUS_ACTIVITY = 'SUSPICIOUS_ACTIVITY'; /** * The balance was decreased to reverse an unintentional balance increase. */ public const BALANCE_ACCIDENTALLY_INCREASED = 'BALANCE_ACCIDENTALLY_INCREASED'; /** * The balance was decreased to accommodate support issues. */ public const SUPPORT_ISSUE = 'SUPPORT_ISSUE'; /** * The balance was decreased because the order used to purchase or reload the * gift card was refunded. */ public const PURCHASE_WAS_REFUNDED = 'PURCHASE_WAS_REFUNDED'; }