checkboxInput = $checkboxInput; } /** * @return InputFieldCheckboxInput */ public function getCheckboxInput() { return $this->checkboxInput; } /** * Input field to select one of the offered choices. Corresponds to the [html * input type=radio](https://www.w3.org/TR/2012/WD-html- * markup-20121025/input.radio.html#input.radio). * * @param InputFieldChoiceInput $choiceInput */ public function setChoiceInput(InputFieldChoiceInput $choiceInput) { $this->choiceInput = $choiceInput; } /** * @return InputFieldChoiceInput */ public function getChoiceInput() { return $this->choiceInput; } /** * Not for display but need to be sent back for the given input field. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Input field label. There may be more information to be shown in a tooltip. * * @param TextWithTooltip $label */ public function setLabel(TextWithTooltip $label) { $this->label = $label; } /** * @return TextWithTooltip */ public function getLabel() { return $this->label; } /** * Whether the field is required. The action button needs to stay disabled * till values for all required fields are provided. * * @param bool $required */ public function setRequired($required) { $this->required = $required; } /** * @return bool */ public function getRequired() { return $this->required; } /** * Input field to provide text information. Corresponds to the [html input * type=text](https://www.w3.org/TR/2012/WD-html- * markup-20121025/input.text.html#input.text) or [html * textarea](https://www.w3.org/TR/2012/WD-html- * markup-20121025/textarea.html#textarea). * * @param InputFieldTextInput $textInput */ 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');