"CountryCode", "viewType" => "ViewType", ]; /** * @var string */ public $countryCode; /** * @var int */ public $viewType; /** * @param string */ public function setCountryCode($countryCode) { $this->countryCode = $countryCode; } /** * @return string */ public function getCountryCode() { return $this->countryCode; } /** * @param int */ public function setViewType($viewType) { $this->viewType = $viewType; } /** * @return int */ public function getViewType() { return $this->viewType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScienceOceanViewCountryView::class, 'Google_Service_Contentwarehouse_ScienceOceanViewCountryView');