propresenter-php/generated/Rv/Analytics/Startup/PlanningCenter.php
Thorsten Bus 22ba4aff7d refactor: make repo Composer-compatible by moving php/ to root and ref/ to doc/reference_samples
- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root
- Move ref/ to doc/reference_samples/ for better organization
- Remove vendor/ from git tracking (now properly gitignored)
- Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/)
- Update all documentation paths (AGENTS.md, doc/*.md)
- Remove php.bak/ directory
- All 252 tests pass
2026-03-30 13:26:29 +02:00

222 lines
5.1 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: analyticsStartup.proto
namespace Rv\Analytics\Startup;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.analytics.Startup.PlanningCenter</code>
*/
class PlanningCenter extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>bool logged_in = 1;</code>
*/
protected $logged_in = false;
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
*/
protected $auto_update = false;
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
*/
protected $match_songs = false;
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
*/
protected $show_history = false;
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
*/
protected $make_arrangements = false;
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
*/
protected $auto_upload = false;
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
*/
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 <code>bool logged_in = 1;</code>
* @return bool
*/
public function getLoggedIn()
{
return $this->logged_in;
}
/**
* Generated from protobuf field <code>bool logged_in = 1;</code>
* @param bool $var
* @return $this
*/
public function setLoggedIn($var)
{
GPBUtil::checkBool($var);
$this->logged_in = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
* @return bool
*/
public function getAutoUpdate()
{
return $this->auto_update;
}
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
* @param bool $var
* @return $this
*/
public function setAutoUpdate($var)
{
GPBUtil::checkBool($var);
$this->auto_update = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
* @return bool
*/
public function getMatchSongs()
{
return $this->match_songs;
}
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
* @param bool $var
* @return $this
*/
public function setMatchSongs($var)
{
GPBUtil::checkBool($var);
$this->match_songs = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
* @return bool
*/
public function getShowHistory()
{
return $this->show_history;
}
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
* @param bool $var
* @return $this
*/
public function setShowHistory($var)
{
GPBUtil::checkBool($var);
$this->show_history = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
* @return bool
*/
public function getMakeArrangements()
{
return $this->make_arrangements;
}
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
* @param bool $var
* @return $this
*/
public function setMakeArrangements($var)
{
GPBUtil::checkBool($var);
$this->make_arrangements = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
* @return bool
*/
public function getAutoUpload()
{
return $this->auto_upload;
}
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
* @param bool $var
* @return $this
*/
public function setAutoUpload($var)
{
GPBUtil::checkBool($var);
$this->auto_upload = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
* @return bool
*/
public function getAutoDownload()
{
return $this->auto_download;
}
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
* @param bool $var
* @return $this
*/
public function setAutoDownload($var)
{
GPBUtil::checkBool($var);
$this->auto_download = $var;
return $this;
}
}