Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: InventoryAlertType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates whether Square should alert the merchant when the inventory quantity of a * CatalogItemVariation is low. */ class InventoryAlertType { /** * The variation does not display an alert. */ public const NONE = 'NONE'; /** * The variation generates an alert when its quantity is low. */ public const LOW_QUANTITY = 'LOW_QUANTITY'; }
Save
Cancel