<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait inGroupProductWithIDTrait {
|
/**
|
* @var string Indicates the productGroupID for a ProductGroup that this product isVariantOf.
|
*/
|
protected string $inGroupProductWithID;
|
|
public function getInGroupProductWithID():?string
|
{
|
return $this->inGroupProductWithID??null;
|
}
|
public function setInGroupProductWithID(string $inGroupProductWithID):void
|
{
|
$this->inGroupProductWithID = $inGroupProductWithID;
|
}
|
}
|