"ClosestLanguageId", "confidence" => "Confidence", "languageCode" => "LanguageCode", ]; /** * @var int */ public $closestLanguageId; /** * @var int */ public $confidence; /** * @var string */ public $languageCode; /** * @param int */ public function setClosestLanguageId($closestLanguageId) { $this->closestLanguageId = $closestLanguageId; } /** * @return int */ public function getClosestLanguageId() { return $this->closestLanguageId; } /** * @param int */ public function setConfidence($confidence) { $this->confidence = $confidence; } /** * @return int */ public function getConfidence() { return $this->confidence; } /** * @param string */ public function setLanguageCode($languageCode) { $this->languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoodocLanguageLabel::class, 'Google_Service_Contentwarehouse_GoodocLanguageLabel');