Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: LoyaltyRewardStatus.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The status of the loyalty reward. */ class LoyaltyRewardStatus { /** * The reward is issued. */ public const ISSUED = 'ISSUED'; /** * The reward is redeemed. */ public const REDEEMED = 'REDEEMED'; /** * The reward is deleted. */ public const DELETED = 'DELETED'; }
Save
Cancel