<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\CreativeWork\WebSite;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait interactionServiceTrait {
|
/**
|
* @var WebSite The WebSite or SoftwareApplication where the interactions took place. Also accepts SoftwareApplication (not included)
|
*/
|
protected WebSite $interactionService;
|
|
public function getInteractionService():?WebSite
|
{
|
return $this->interactionService??null;
|
}
|
public function setInteractionService(WebSite $interactionService):void
|
{
|
$this->interactionService = $interactionService;
|
}
|
}
|