"Text", "type" => "Type", ]; /** * @var string */ public $text; /** * @var int */ public $type; /** * @param string */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } /** * @param int */ public function setType($type) { $this->type = $type; } /** * @return int */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LegalCitationCourtDocumentCourtNameComponent::class, 'Google_Service_Contentwarehouse_LegalCitationCourtDocumentCourtNameComponent');