Google_Vote
The Google Analyticator Google Vote class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_ModeratorService.php
- class Google_Vote extends Google_Model {
- public $vote;
- public $flag;
- protected $__idType = 'Google_VoteId';
- protected $__idDataType = '';
- public $id;
- public $kind;
- public function setVote($vote) {
- $this->vote = $vote;
- }
- public function getVote() {
- return $this->vote;
- }
- public function setFlag($flag) {
- $this->flag = $flag;
- }
- public function getFlag() {
- return $this->flag;
- }
- public function setId(Google_VoteId $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }