rv.data.AirplayConfiguration */ class AirplayConfiguration extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool enable = 1; */ protected $enable = false; /** * Generated from protobuf field string fairplay_path = 2; */ protected $fairplay_path = ''; /** * Generated from protobuf field string service_name = 3; */ protected $service_name = ''; /** * Generated from protobuf field string password = 4; */ protected $password = ''; /** * Generated from protobuf field bool password_enabled = 5; */ protected $password_enabled = false; /** * Generated from protobuf field string uuid = 6; */ protected $uuid = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $enable * @type string $fairplay_path * @type string $service_name * @type string $password * @type bool $password_enabled * @type string $uuid * } */ public function __construct($data = NULL) { \GPBMetadata\ProApi::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool enable = 1; * @return bool */ public function getEnable() { return $this->enable; } /** * Generated from protobuf field bool enable = 1; * @param bool $var * @return $this */ public function setEnable($var) { GPBUtil::checkBool($var); $this->enable = $var; return $this; } /** * Generated from protobuf field string fairplay_path = 2; * @return string */ public function getFairplayPath() { return $this->fairplay_path; } /** * Generated from protobuf field string fairplay_path = 2; * @param string $var * @return $this */ public function setFairplayPath($var) { GPBUtil::checkString($var, True); $this->fairplay_path = $var; return $this; } /** * Generated from protobuf field string service_name = 3; * @return string */ public function getServiceName() { return $this->service_name; } /** * Generated from protobuf field string service_name = 3; * @param string $var * @return $this */ public function setServiceName($var) { GPBUtil::checkString($var, True); $this->service_name = $var; return $this; } /** * Generated from protobuf field string password = 4; * @return string */ public function getPassword() { return $this->password; } /** * Generated from protobuf field string password = 4; * @param string $var * @return $this */ public function setPassword($var) { GPBUtil::checkString($var, True); $this->password = $var; return $this; } /** * Generated from protobuf field bool password_enabled = 5; * @return bool */ public function getPasswordEnabled() { return $this->password_enabled; } /** * Generated from protobuf field bool password_enabled = 5; * @param bool $var * @return $this */ public function setPasswordEnabled($var) { GPBUtil::checkBool($var); $this->password_enabled = $var; return $this; } /** * Generated from protobuf field string uuid = 6; * @return string */ public function getUuid() { return $this->uuid; } /** * Generated from protobuf field string uuid = 6; * @param string $var * @return $this */ public function setUuid($var) { GPBUtil::checkString($var, True); $this->uuid = $var; return $this; } }