Google_Series
The Google Pagespeed Insights Google Series class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ModeratorService.php
- class Google_Series extends Google_Model {
- public $kind;
- public $description;
- protected $__rulesType = 'Google_SeriesRules';
- protected $__rulesDataType = '';
- public $rules;
- public $unauthVotingAllowed;
- public $videoSubmissionAllowed;
- public $name;
- public $numTopics;
- public $anonymousSubmissionAllowed;
- public $unauthSubmissionAllowed;
- protected $__idType = 'Google_SeriesId';
- protected $__idDataType = '';
- public $id;
- protected $__countersType = 'Google_SeriesCounters';
- protected $__countersDataType = '';
- public $counters;
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setDescription($description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setRules(Google_SeriesRules $rules) {
- $this->rules = $rules;
- }
- public function getRules() {
- return $this->rules;
- }
- public function setUnauthVotingAllowed($unauthVotingAllowed) {
- $this->unauthVotingAllowed = $unauthVotingAllowed;
- }
- public function getUnauthVotingAllowed() {
- return $this->unauthVotingAllowed;
- }
- public function setVideoSubmissionAllowed($videoSubmissionAllowed) {
- $this->videoSubmissionAllowed = $videoSubmissionAllowed;
- }
- public function getVideoSubmissionAllowed() {
- return $this->videoSubmissionAllowed;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setNumTopics($numTopics) {
- $this->numTopics = $numTopics;
- }
- public function getNumTopics() {
- return $this->numTopics;
- }
- public function setAnonymousSubmissionAllowed($anonymousSubmissionAllowed) {
- $this->anonymousSubmissionAllowed = $anonymousSubmissionAllowed;
- }
- public function getAnonymousSubmissionAllowed() {
- return $this->anonymousSubmissionAllowed;
- }
- public function setUnauthSubmissionAllowed($unauthSubmissionAllowed) {
- $this->unauthSubmissionAllowed = $unauthSubmissionAllowed;
- }
- public function getUnauthSubmissionAllowed() {
- return $this->unauthSubmissionAllowed;
- }
- public function setId(Google_SeriesId $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setCounters(Google_SeriesCounters $counters) {
- $this->counters = $counters;
- }
- public function getCounters() {
- return $this->counters;
- }
- }