candidateUrl = $candidateUrl; } /** * @return string */ public function getCandidateUrl() { return $this->candidateUrl; } /** * @param Channel[] */ public function setChannels($channels) { $this->channels = $channels; } /** * @return Channel[] */ public function getChannels() { return $this->channels; } /** * @param string */ public function setEmail($email) { $this->email = $email; } /** * @return string */ public function getEmail() { return $this->email; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setOrderOnBallot($orderOnBallot) { $this->orderOnBallot = $orderOnBallot; } /** * @return string */ public function getOrderOnBallot() { return $this->orderOnBallot; } /** * @param string */ public function setParty($party) { $this->party = $party; } /** * @return string */ public function getParty() { return $this->party; } /** * @param string */ public function setPhone($phone) { $this->phone = $phone; } /** * @return string */ public function getPhone() { return $this->phone; } /** * @param string */ public function setPhotoUrl($photoUrl) { $this->photoUrl = $photoUrl; } /** * @return string */ public function getPhotoUrl() { return $this->photoUrl; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Candidate::class, 'Google_Service_CivicInfo_Candidate');