Class: Jira4R::V2::RemoteIssueType
- Inherits:
-
AbstractRemoteConstant
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- AbstractRemoteConstant
- Jira4R::V2::RemoteIssueType
- Defined in:
- lib/jira4r/v2/jira_service.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.
282 283 284 285 286 287 288 |
# File 'lib/jira4r/v2/jira_service.rb', line 282 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.
278 279 280 |
# File 'lib/jira4r/v2/jira_service.rb', line 278 def description @description end |
#icon ⇒ Object
Returns the value of attribute icon.
279 280 281 |
# File 'lib/jira4r/v2/jira_service.rb', line 279 def icon @icon end |
#id ⇒ Object
Returns the value of attribute id.
276 277 278 |
# File 'lib/jira4r/v2/jira_service.rb', line 276 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
277 278 279 |
# File 'lib/jira4r/v2/jira_service.rb', line 277 def name @name end |
#subTask ⇒ Object
Returns the value of attribute subTask.
280 281 282 |
# File 'lib/jira4r/v2/jira_service.rb', line 280 def subTask @subTask end |