Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: LoyaltyProgramRewardDefinitionType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The type of discount the reward tier offers. DEPRECATED at version 2020-12-16. Discount details * are now defined using a catalog pricing rule and other catalog objects. For more information, see * [Getting discount details for a reward tier](https://developer.squareup.com/docs/loyalty-api/loyalty- * rewards#get-discount-details). */ class LoyaltyProgramRewardDefinitionType { /** * The fixed amount discounted. */ public const FIXED_AMOUNT = 'FIXED_AMOUNT'; /** * The fixed percentage discounted. */ public const FIXED_PERCENTAGE = 'FIXED_PERCENTAGE'; }
Save
Cancel