Class GetCreateIssueMetadataOptions
java.lang.Object
com.atlassian.jira.rest.client.api.GetCreateIssueMetadataOptions
Set of optional parameters for
IssueRestClient.getCreateIssueMetadata(GetCreateIssueMetadataOptions).
GetCreateIssueMetadataOptionsBuilder is very useful for building objects of this class.- Since:
- v1.0
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
EXPAND_PROJECTS_ISSUETYPES_FIELDS
- See Also:
-
projectIds
-
projectKeys
-
issueTypeIds
-
issueTypeNames
-
expandos
-
-
Constructor Details
-
GetCreateIssueMetadataOptions
public GetCreateIssueMetadataOptions(@Nullable Iterable<String> expandos, @Nullable Iterable<String> issueTypeNames, @Nullable Iterable<Long> issueTypeIds, @Nullable Iterable<String> projectKeys, @Nullable Iterable<Long> projectIds) - Parameters:
expandos- List of fields that should be expanded. See constants with prefix EXPAND_ in this class. Passnullto ignore.issueTypeNames- List of issue types names to filter results. Passnullto ignore.issueTypeIds- List of issue types Ids to filter results. Passnullto ignore.projectKeys- List of projects keys used to filter results. Passnullto ignore.projectIds- List of projects Ids used to filter results. Passnullto ignore.
-