* @copyright (c) 2013, Michael Roterman * @version 0.0.1 */ namespace Tmdb\Model\Common; use Tmdb\Model\AbstractModel; use Tmdb\Model\Filter\LanguageFilter; /** * Class SpokenLanguage * @package Tmdb\Model\Common */ class SpokenLanguage extends AbstractModel implements LanguageFilter { private $iso6391; private $name; public static $properties = array( 'iso_369_1', 'name', ); /** * @param string $iso6391 * @return $this */ public function setIso6391($iso6391) { $this->iso6391 = $iso6391; return $this; } /** * @return string */ public function getIso6391() { return $this->iso6391; } /** * @param string $name * @return $this */ public function setName($name) { $this->name = $name; return $this; } /** * @return string */ public function getName() { return $this->name; } }