Class: Jira4R::V2::RemoteResolution
- Inherits:
-
AbstractRemoteConstant
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- AbstractRemoteConstant
- Jira4R::V2::RemoteResolution
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteResolution
id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
icon - SOAP::SOAPString
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.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, description = nil, icon = nil) ⇒ RemoteResolution
constructor
A new instance of RemoteResolution.
Constructor Details
#initialize(id = nil, name = nil, description = nil, icon = nil) ⇒ RemoteResolution
Returns a new instance of RemoteResolution.
260 261 262 263 264 265 |
# File 'lib/jira4r/v2/jiraService.rb', line 260 def initialize(id = nil, name = nil, description = nil, icon = nil) @id = id @name = name @description = description @icon = icon end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
257 258 259 |
# File 'lib/jira4r/v2/jiraService.rb', line 257 def description @description end |
#icon ⇒ Object
Returns the value of attribute icon.
258 259 260 |
# File 'lib/jira4r/v2/jiraService.rb', line 258 def icon @icon end |
#id ⇒ Object
Returns the value of attribute id.
255 256 257 |
# File 'lib/jira4r/v2/jiraService.rb', line 255 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
256 257 258 |
# File 'lib/jira4r/v2/jiraService.rb', line 256 def name @name end |