Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: GiftCardActivityAdjustIncrementReason.php
<?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'; }
Save
Cancel