rv.data.Preferences.General */ class General extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool house_of_worship_integrations = 1; */ protected $house_of_worship_integrations = false; /** * Generated from protobuf field bool crash_reports = 2; */ protected $crash_reports = false; /** * Generated from protobuf field bool analytics = 3; */ protected $analytics = false; /** * Generated from protobuf field string logo_path = 4; */ protected $logo_path = ''; /** * Generated from protobuf field string language = 5; */ protected $language = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $house_of_worship_integrations * @type bool $crash_reports * @type bool $analytics * @type string $logo_path * @type string $language * } */ public function __construct($data = NULL) { \GPBMetadata\Preferences::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool house_of_worship_integrations = 1; * @return bool */ public function getHouseOfWorshipIntegrations() { return $this->house_of_worship_integrations; } /** * Generated from protobuf field bool house_of_worship_integrations = 1; * @param bool $var * @return $this */ public function setHouseOfWorshipIntegrations($var) { GPBUtil::checkBool($var); $this->house_of_worship_integrations = $var; return $this; } /** * Generated from protobuf field bool crash_reports = 2; * @return bool */ public function getCrashReports() { return $this->crash_reports; } /** * Generated from protobuf field bool crash_reports = 2; * @param bool $var * @return $this */ public function setCrashReports($var) { GPBUtil::checkBool($var); $this->crash_reports = $var; return $this; } /** * Generated from protobuf field bool analytics = 3; * @return bool */ public function getAnalytics() { return $this->analytics; } /** * Generated from protobuf field bool analytics = 3; * @param bool $var * @return $this */ public function setAnalytics($var) { GPBUtil::checkBool($var); $this->analytics = $var; return $this; } /** * Generated from protobuf field string logo_path = 4; * @return string */ public function getLogoPath() { return $this->logo_path; } /** * Generated from protobuf field string logo_path = 4; * @param string $var * @return $this */ public function setLogoPath($var) { GPBUtil::checkString($var, True); $this->logo_path = $var; return $this; } /** * Generated from protobuf field string language = 5; * @return string */ public function getLanguage() { return $this->language; } /** * Generated from protobuf field string language = 5; * @param string $var * @return $this */ public function setLanguage($var) { GPBUtil::checkString($var, True); $this->language = $var; return $this; } }