# Athenian::ReleaseSetInclude ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **users** | [**Hash<String, IncludedNativeUser>**](IncludedNativeUser.md) | Mapping user native (e.g., GitHub) login ID -> user details. The users are mentioned in the PRs from \"PullRequestSet.data\" or in the commits from \"FilterCommitsRequest.data\". | | | **jira** | [**Hash<String, LinkedJIRAIssue>**](LinkedJIRAIssue.md) | Mapping JIRA issue ID -> details. | [optional] | | **deployments** | [**Hash<String, DeploymentNotification>**](DeploymentNotification.md) | Mapping deployment names to their details. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::ReleaseSetInclude.new( users: null, jira: null, deployments: null ) ```