java.lang.Object | |
↳ | com.atlassian.jira.rest.v2.issue.IssueTypePropertyResource |
This resource allows to store custom properties for issue types.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Removes the property from the issue type identified by the id.
| |||||||||||
Returns the value of the property with a given key from the issue type identified by the id.
| |||||||||||
Returns the keys of all properties for the issue type identified by the id.
| |||||||||||
Sets the value of the specified issue type's property.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
@Internal
or @PublicApi
.
Removes the property from the issue type identified by the id. Ths user removing the property is required to have permissions to edit the issue type.
issueTypeId | the issue type from which the property will be removed |
---|---|
propertyKey | the key of the property to remove |
@Internal
or @PublicApi
.
Returns the value of the property with a given key from the issue type identified by the id. The user who retrieves the property is required to have permissions to view the issue type.
issueTypeId | the issue type from which the property will be returned |
---|---|
propertyKey | the key of the property to return |
EntityPropertyBean
@Internal
or @PublicApi
.
Returns the keys of all properties for the issue type identified by the id.
issueTypeId | the issue type from which the keys will be returned |
---|
@Internal
or @PublicApi
.
Sets the value of the specified issue type's property.
You can use this resource to store a custom data against an issue type identified by the id. The user who stores the data is required to have permissions to edit an issue type.
issueTypeId | the issue type on which the property will be set |
---|---|
propertyKey | the key of the issue type's property. The maximum length of the key is 255 bytes |
request | the request containing value of the issue type's property. The value has to a valid, non-empty JSON conforming to http://tools.ietf.org/html/rfc4627. The maximum length of the property value is 32768 bytes. |