offer = $offer; } /** * @return string */ public function getOffer() { return $this->offer; } /** * @param string */ public function setPlan($plan) { $this->plan = $plan; } /** * @return string */ public function getPlan() { return $this->plan; } /** * @param string */ public function setPublisher($publisher) { $this->publisher = $publisher; } /** * @return string */ public function getPublisher() { return $this->publisher; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OSDescription::class, 'Google_Service_VMMigrationService_OSDescription');