kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param int */ public function setLicensedNumberOfSeats($licensedNumberOfSeats) { $this->licensedNumberOfSeats = $licensedNumberOfSeats; } /** * @return int */ public function getLicensedNumberOfSeats() { return $this->licensedNumberOfSeats; } /** * @param int */ public function setMaximumNumberOfSeats($maximumNumberOfSeats) { $this->maximumNumberOfSeats = $maximumNumberOfSeats; } /** * @return int */ public function getMaximumNumberOfSeats() { return $this->maximumNumberOfSeats; } /** * @param int */ public function setNumberOfSeats($numberOfSeats) { $this->numberOfSeats = $numberOfSeats; } /** * @return int */ public function getNumberOfSeats() { return $this->numberOfSeats; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Seats::class, 'Google_Service_Reseller_Seats');