class RecombeeApiClient::UpdateMoreItems

Updates (some) property values of all the items that pass the filter.

Example: *Setting all the items that are older than a week as unavailable*

```
  {
    "filter": "'releaseDate' < now() - 7*24*3600",
    "changes": {"available": false}
  }
```