fieldId = $fieldId; } /** * @return string */ public function getFieldId() { return $this->fieldId; } /** * Selection choice ID for the selection option. Should only be set if the * field type is `SELECTION` in the Google Drive `Label.Field` object. Maps to * the id field of the Google Drive `Label.Field.SelectionOptions` resource. * * @param string $selection */ public function setSelection($selection) { $this->selection = $selection; } /** * @return string */ public function getSelection() { return $this->selection; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ClassificationLabelFieldValue::class, 'Google_Service_Gmail_ClassificationLabelFieldValue');