Class: Jira4R::V2::RemoteResolution

Inherits:
AbstractRemoteConstant show all
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

Instance Method Summary collapse

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

#descriptionObject

Returns the value of attribute description.



257
258
259
# File 'lib/jira4r/v2/jiraService.rb', line 257

def description
  @description
end

#iconObject

Returns the value of attribute icon.



258
259
260
# File 'lib/jira4r/v2/jiraService.rb', line 258

def icon
  @icon
end

#idObject

Returns the value of attribute id.



255
256
257
# File 'lib/jira4r/v2/jiraService.rb', line 255

def id
  @id
end

#nameObject

Returns the value of attribute name.



256
257
258
# File 'lib/jira4r/v2/jiraService.rb', line 256

def name
  @name
end