<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\PriceSpecification;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait eligibleTransactionVolumeTrait {
|
/**
|
* @var PriceSpecification The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.
|
*/
|
protected PriceSpecification $eligibleTransactionVolume;
|
|
public function getEligibleTransactionVolume():?PriceSpecification
|
{
|
return $this->eligibleTransactionVolume??null;
|
}
|
public function setEligibleTransactionVolume(PriceSpecification $eligibleTransactionVolume):void
|
{
|
$this->eligibleTransactionVolume = $eligibleTransactionVolume;
|
}
|
}
|