relativeDate = $relativeDate;
}
/**
* @return string
*/
public function getRelativeDate()
{
return $this->relativeDate;
}
/**
* @param string
*/
public function setUserEnteredValue($userEnteredValue)
{
$this->userEnteredValue = $userEnteredValue;
}
/**
* @return string
*/
public function getUserEnteredValue()
{
return $this->userEnteredValue;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConditionValue::class, 'Google_Service_Sheets_ConditionValue');