displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setFieldId($fieldId) { $this->fieldId = $fieldId; } /** * @return string */ public function getFieldId() { return $this->fieldId; } /** * @param FieldValue */ public function setNewValue(FieldValue $newValue) { $this->newValue = $newValue; } /** * @return FieldValue */ public function getNewValue() { return $this->newValue; } /** * @param FieldValue */ public function setOldValue(FieldValue $oldValue) { $this->oldValue = $oldValue; } /** * @return FieldValue */ public function getOldValue() { return $this->oldValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FieldValueChange::class, 'Google_Service_DriveActivity_FieldValueChange');