Google_Seats
The Google Pagespeed Insights Google Seats class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ResellerService.php
- class Google_Seats extends Google_Model {
- public $kind;
- public $maximumNumberOfSeats;
- public $numberOfSeats;
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setMaximumNumberOfSeats($maximumNumberOfSeats) {
- $this->maximumNumberOfSeats = $maximumNumberOfSeats;
- }
- public function getMaximumNumberOfSeats() {
- return $this->maximumNumberOfSeats;
- }
- public function setNumberOfSeats($numberOfSeats) {
- $this->numberOfSeats = $numberOfSeats;
- }
- public function getNumberOfSeats() {
- return $this->numberOfSeats;
- }
- }