checkboxInput = $checkboxInput; } /** * @return InputFieldCheckboxInput */ public function getCheckboxInput() { return $this->checkboxInput; } /** * @param InputFieldChoiceInput */ public function setChoiceInput(InputFieldChoiceInput $choiceInput) { $this->choiceInput = $choiceInput; } /** * @return InputFieldChoiceInput */ public function getChoiceInput() { return $this->choiceInput; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param TextWithTooltip */ public function setLabel(TextWithTooltip $label) { $this->label = $label; } /** * @return TextWithTooltip */ public function getLabel() { return $this->label; } /** * @param bool */ public function setRequired($required) { $this->required = $required; } /** * @return bool */ public function getRequired() { return $this->required; } /** * @param InputFieldTextInput */ public function setTextInput(InputFieldTextInput $textInput) { $this->textInput = $textInput; } /** * @return InputFieldTextInput */ public function getTextInput() { return $this->textInput; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InputField::class, 'Google_Service_ShoppingContent_InputField');