com.atlassian.jira.rest.client.api
Class GetCreateIssueMetadataOptions
java.lang.Object
com.atlassian.jira.rest.client.api.GetCreateIssueMetadataOptions
public class GetCreateIssueMetadataOptions
- extends Object
Set of optional parameters for IssueRestClient.getCreateIssueMetadata(GetCreateIssueMetadataOptions).
GetCreateIssueMetadataOptionsBuilder is very useful for building objects of this class.
- Since:
- v1.0
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EXPAND_PROJECTS_ISSUETYPES_FIELDS
public static final String EXPAND_PROJECTS_ISSUETYPES_FIELDS
- See Also:
- Constant Field Values
projectIds
@Nullable
public final Iterable<Long> projectIds
projectKeys
@Nullable
public final Iterable<String> projectKeys
issueTypeIds
@Nullable
public final Iterable<Long> issueTypeIds
issueTypeNames
@Nullable
public final Iterable<String> issueTypeNames
expandos
@Nullable
public final Iterable<String> expandos
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. Pass null to ignore.issueTypeNames - List of issue types names to filter results. Pass null to ignore.issueTypeIds - List of issue types Ids to filter results. Pass null to ignore.projectKeys - List of projects keys used to filter results. Pass null to ignore.projectIds - List of projects Ids used to filter results. Pass null to ignore.
Copyright © 2014 Atlassian. All Rights Reserved.