* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ namespace PrestaShop\Module\FacetedSearch\Definition; class Availability { const IN_STOCK = 2; const AVAILABLE = 1; const NOT_AVAILABLE = 0; }