before = $before;
}
/**
* @return bool
*/
public function getBefore()
{
return $this->before;
}
/**
* @param Value[]
*/
public function setValues($values)
{
$this->values = $values;
}
/**
* @return Value[]
*/
public function getValues()
{
return $this->values;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Cursor::class, 'Google_Service_Firestore_Cursor');