# Athenian::FilterReleasesRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account** | **Integer** | Session account ID. | | | **date_from** | **Date** | Updates must be later than or equal to this date. An update is any action that influences the stage assignment. | | | **date_to** | **Date** | Updates must be earlier than or equal to this date. An update is any action that influences the stage assignment. | | | **timezone** | **Integer** | Local time zone offset in minutes, used to adjust `date_from` and `date_to`. | [optional] | | **_in** | **Array<String>** | Set of repositories. An empty list raises a bad response 400. Duplicates are automatically ignored. | [optional] | | **with** | [**ReleaseWith**](ReleaseWith.md) | | [optional] | | **labels_include** | **Array<String>** | At least one of these labels must be present in at least one released PR. | [optional] | | **labels_exclude** | **Array<String>** | PRs with these labels are excluded from `ReleaseSet.data.prs`. | [optional] | | **jira** | [**JIRAFilter**](JIRAFilter.md) | | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::FilterReleasesRequest.new( account: null, date_from: null, date_to: null, timezone: null, _in: ["github.com/athenianco/athenian-webapp","github.com/athenianco/athenian-api"], with: null, labels_include: null, labels_exclude: null, jira: null ) ```