From 07c07538106a75d8471d23924c6d0c5b9fa4a049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rnar=20Helland?= Date: Tue, 27 Sep 2016 18:53:27 +0200 Subject: [PATCH] Added tags and attributes to Media model --- src/Keyteq/Keymedia/Model/Media.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Keyteq/Keymedia/Model/Media.php b/src/Keyteq/Keymedia/Model/Media.php index fb38e90..8dd0526 100644 --- a/src/Keyteq/Keymedia/Model/Media.php +++ b/src/Keyteq/Keymedia/Model/Media.php @@ -13,6 +13,18 @@ class Media extends Item protected $shareUrl; protected $created; protected $modified; + protected $tags; + protected $attributes; + + public function getTags() + { + return $this->tags; + } + + public function getAttributes() + { + return $this->attributes; + } public function getId() {