Class: Jira4R::V2::RemotePriority

Inherits:
AbstractRemoteConstant show all
Defined in:
lib/jira4r/v2/jiraService.rb

Overview

http://beans.soap.rpc.jira.atlassian.comRemotePriority

id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
icon - SOAP::SOAPString
color - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, description = nil, icon = nil, color = nil) ⇒ RemotePriority

Returns a new instance of RemotePriority.



240
241
242
243
244
245
246
# File 'lib/jira4r/v2/jiraService.rb', line 240

def initialize(id = nil, name = nil, description = nil, icon = nil, color = nil)
  @id = id
  @name = name
  @description = description
  @icon = icon
  @color = color
end

Instance Attribute Details

#colorObject

Returns the value of attribute color.



238
239
240
# File 'lib/jira4r/v2/jiraService.rb', line 238

def color
  @color
end

#descriptionObject

Returns the value of attribute description.



236
237
238
# File 'lib/jira4r/v2/jiraService.rb', line 236

def description
  @description
end

#iconObject

Returns the value of attribute icon.



237
238
239
# File 'lib/jira4r/v2/jiraService.rb', line 237

def icon
  @icon
end

#idObject

Returns the value of attribute id.



234
235
236
# File 'lib/jira4r/v2/jiraService.rb', line 234

def id
  @id
end

#nameObject

Returns the value of attribute name.



235
236
237
# File 'lib/jira4r/v2/jiraService.rb', line 235

def name
  @name
end