IssueDetailsOptions Enumeration |
Namespace:
RMTrackApiClient
Assembly:
RMTrackApiClient (in RMTrackApiClient.dll) Version: 6.0.66.2974
Syntax [FlagsAttribute]
public enum IssueDetailsOptions
<FlagsAttribute>
Public Enumeration IssueDetailsOptions
Members
| Member name | Value | Description |
---|
| Default | 0 |
The default is to return Fields, Comments, Attachments, RelatedIssues, RelatedItems, Subscribers and Histories
|
| All | 32767 |
Returns all parts of an issue.
|
| Fields | 1 |
Returns the issue fields (except for comments).
|
| Comments | 2 |
Returns the comment fields.
|
| Attachments | 4 |
Returns the list of attachments (without the actual attachment data).
|
| AttachmentData | 8 |
Returns the attachment data as part of the list of attachments. This could
be a very large amount of data.
|
| RelatedIssues | 16 |
Returns the list of related issues.
|
| RelatedItems | 32 |
Returns the list of related items.
|
| Subscribers | 64 |
Returns the list of subscribers (users who get notified when an issue is updated).
|
| Histories | 128 |
Returns the list of audit trail history for an issue (except for the actual change details).
|
| HistoryChangeDetails | 255 |
Includes the change details with the audit trail history list (could be a large amount of data).
|
Remarks
This enumeration is global in order to be visible/availabel to COM clients.
See Also