<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\MonetaryAmount;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait estimateCostTrait {
|
/**
|
* @var MonetaryAmount|string The estimated cost of the supply or supplies consumed when performing instructions.
|
*/
|
protected MonetaryAmount|string $estimateCost;
|
|
public function getEstimateCost():MonetaryAmount|string|null
|
{
|
return $this->estimateCost??null;
|
}
|
public function setEstimateCost(MonetaryAmount|string $estimateCost):void
|
{
|
$this->estimateCost = $estimateCost;
|
}
|
}
|