. * */ namespace Friendica\Content\Entity\Conversation; /** * @property-read string $code Channel code * @property-read string $label Channel label * @property-read string $description Channel description * @property-read string $accessKey Access key */ final class Channel extends \Friendica\BaseEntity { /** @var string */ protected $code; /** @var string */ protected $label; /** @var string */ protected $description; /** @var string */ protected $accessKey; public function __construct(string $code, string $label, string $description, string $accessKey) { $this->code = $code; $this->label = $label; $this->description = $description; $this->accessKey = $accessKey; } }