rv.analytics.Startup.PlanningCenter */ class PlanningCenter extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool logged_in = 1; */ protected $logged_in = false; /** * Generated from protobuf field bool auto_update = 2; */ protected $auto_update = false; /** * Generated from protobuf field bool match_songs = 3; */ protected $match_songs = false; /** * Generated from protobuf field bool show_history = 4; */ protected $show_history = false; /** * Generated from protobuf field bool make_arrangements = 5; */ protected $make_arrangements = false; /** * Generated from protobuf field bool auto_upload = 6; */ protected $auto_upload = false; /** * Generated from protobuf field bool auto_download = 7; */ protected $auto_download = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $logged_in * @type bool $auto_update * @type bool $match_songs * @type bool $show_history * @type bool $make_arrangements * @type bool $auto_upload * @type bool $auto_download * } */ public function __construct($data = NULL) { \GPBMetadata\AnalyticsStartup::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool logged_in = 1; * @return bool */ public function getLoggedIn() { return $this->logged_in; } /** * Generated from protobuf field bool logged_in = 1; * @param bool $var * @return $this */ public function setLoggedIn($var) { GPBUtil::checkBool($var); $this->logged_in = $var; return $this; } /** * Generated from protobuf field bool auto_update = 2; * @return bool */ public function getAutoUpdate() { return $this->auto_update; } /** * Generated from protobuf field bool auto_update = 2; * @param bool $var * @return $this */ public function setAutoUpdate($var) { GPBUtil::checkBool($var); $this->auto_update = $var; return $this; } /** * Generated from protobuf field bool match_songs = 3; * @return bool */ public function getMatchSongs() { return $this->match_songs; } /** * Generated from protobuf field bool match_songs = 3; * @param bool $var * @return $this */ public function setMatchSongs($var) { GPBUtil::checkBool($var); $this->match_songs = $var; return $this; } /** * Generated from protobuf field bool show_history = 4; * @return bool */ public function getShowHistory() { return $this->show_history; } /** * Generated from protobuf field bool show_history = 4; * @param bool $var * @return $this */ public function setShowHistory($var) { GPBUtil::checkBool($var); $this->show_history = $var; return $this; } /** * Generated from protobuf field bool make_arrangements = 5; * @return bool */ public function getMakeArrangements() { return $this->make_arrangements; } /** * Generated from protobuf field bool make_arrangements = 5; * @param bool $var * @return $this */ public function setMakeArrangements($var) { GPBUtil::checkBool($var); $this->make_arrangements = $var; return $this; } /** * Generated from protobuf field bool auto_upload = 6; * @return bool */ public function getAutoUpload() { return $this->auto_upload; } /** * Generated from protobuf field bool auto_upload = 6; * @param bool $var * @return $this */ public function setAutoUpload($var) { GPBUtil::checkBool($var); $this->auto_upload = $var; return $this; } /** * Generated from protobuf field bool auto_download = 7; * @return bool */ public function getAutoDownload() { return $this->auto_download; } /** * Generated from protobuf field bool auto_download = 7; * @param bool $var * @return $this */ public function setAutoDownload($var) { GPBUtil::checkBool($var); $this->auto_download = $var; return $this; } }