Google_SubmissionCounters
The Google Pagespeed Insights Google SubmissionCounters class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ModeratorService.php
- class Google_SubmissionCounters extends Google_Model {
- public $noneVotes;
- public $minusVotes;
- public $plusVotes;
- public function setNoneVotes($noneVotes) {
- $this->noneVotes = $noneVotes;
- }
- public function getNoneVotes() {
- return $this->noneVotes;
- }
- public function setMinusVotes($minusVotes) {
- $this->minusVotes = $minusVotes;
- }
- public function getMinusVotes() {
- return $this->minusVotes;
- }
- public function setPlusVotes($plusVotes) {
- $this->plusVotes = $plusVotes;
- }
- public function getPlusVotes() {
- return $this->plusVotes;
- }
- }