<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\QuantitativeValue;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait inventoryLevelTrait {
|
/**
|
* @var QuantitativeValue The current approximate inventory level for the item or items.
|
*/
|
protected QuantitativeValue $inventoryLevel;
|
|
public function getInventoryLevel():?QuantitativeValue
|
{
|
return $this->inventoryLevel??null;
|
}
|
public function setInventoryLevel(QuantitativeValue $inventoryLevel):void
|
{
|
$this->inventoryLevel = $inventoryLevel;
|
}
|
}
|