currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * @param int */ public function setNumDecimalPlaces($numDecimalPlaces) { $this->numDecimalPlaces = $numDecimalPlaces; } /** * @return int */ public function getNumDecimalPlaces() { return $this->numDecimalPlaces; } /** * @param string */ public function setNumberFormatType($numberFormatType) { $this->numberFormatType = $numberFormatType; } /** * @return string */ public function getNumberFormatType() { return $this->numberFormatType; } /** * @param GamesNumberAffixConfiguration */ public function setSuffix(GamesNumberAffixConfiguration $suffix) { $this->suffix = $suffix; } /** * @return GamesNumberAffixConfiguration */ public function getSuffix() { return $this->suffix; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GamesNumberFormatConfiguration::class, 'Google_Service_GamesConfiguration_GamesNumberFormatConfiguration');