Google_PollingLocation
The Google Books Importer Google PollingLocation class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_CivicInfoService.php
- class Google_PollingLocation extends Google_Model {
- protected $__addressType = 'Google_SimpleAddressType';
- protected $__addressDataType = '';
- public $address;
- public $endDate;
- public $id;
- public $name;
- public $notes;
- public $pollingHours;
- protected $__sourcesType = 'Google_Source';
- protected $__sourcesDataType = 'array';
- public $sources;
- public $startDate;
- public $voterServices;
- public function setAddress(Google_SimpleAddressType $address) {
- $this->address = $address;
- }
- public function getAddress() {
- return $this->address;
- }
- public function setEndDate( $endDate) {
- $this->endDate = $endDate;
- }
- public function getEndDate() {
- return $this->endDate;
- }
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setName( $name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setNotes( $notes) {
- $this->notes = $notes;
- }
- public function getNotes() {
- return $this->notes;
- }
- public function setPollingHours( $pollingHours) {
- $this->pollingHours = $pollingHours;
- }
- public function getPollingHours() {
- return $this->pollingHours;
- }
- public function setSources(/** array(Google_Source) */ $sources) {
- $this->assertIsArray($sources, 'Google_Source', __METHOD__);
- $this->sources = $sources;
- }
- public function getSources() {
- return $this->sources;
- }
- public function setStartDate( $startDate) {
- $this->startDate = $startDate;
- }
- public function getStartDate() {
- return $this->startDate;
- }
- public function setVoterServices( $voterServices) {
- $this->voterServices = $voterServices;
- }
- public function getVoterServices() {
- return $this->voterServices;
- }
- }