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
:
GiftCardActivityAdjustIncrementReason.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 adding money to a [gift card]($m/GiftCard). */ class GiftCardActivityAdjustIncrementReason { /** * The seller gifted a complimentary gift card balance increase. */ public const COMPLIMENTARY = 'COMPLIMENTARY'; /** * The seller increased the gift card balance * to accommodate support issues. */ public const SUPPORT_ISSUE = 'SUPPORT_ISSUE'; /** * The transaction is voided. */ public const TRANSACTION_VOIDED = 'TRANSACTION_VOIDED'; }