Class: Jira4R::V2::RemoteIssueType
- Inherits:
-
AbstractRemoteConstant
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- AbstractRemoteConstant
- Jira4R::V2::RemoteIssueType
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteIssueType
id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
icon - SOAP::SOAPString
subTask - SOAP::SOAPBoolean
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#icon ⇒ Object
Returns the value of attribute icon.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#subTask ⇒ Object
Returns the value of attribute subTask.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil) ⇒ RemoteIssueType
constructor
A new instance of RemoteIssueType.
Constructor Details
#initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil) ⇒ RemoteIssueType
Returns a new instance of RemoteIssueType.
219 220 221 222 223 224 225 |
# File 'lib/jira4r/v2/jiraService.rb', line 219 def initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil) @id = id @name = name @description = description @icon = icon @subTask = subTask end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
215 216 217 |
# File 'lib/jira4r/v2/jiraService.rb', line 215 def description @description end |
#icon ⇒ Object
Returns the value of attribute icon.
216 217 218 |
# File 'lib/jira4r/v2/jiraService.rb', line 216 def icon @icon end |
#id ⇒ Object
Returns the value of attribute id.
213 214 215 |
# File 'lib/jira4r/v2/jiraService.rb', line 213 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
214 215 216 |
# File 'lib/jira4r/v2/jiraService.rb', line 214 def name @name end |
#subTask ⇒ Object
Returns the value of attribute subTask.
217 218 219 |
# File 'lib/jira4r/v2/jiraService.rb', line 217 def subTask @subTask end |