Class: Jira4R::V2::RemotePriority
- Inherits:
-
AbstractRemoteConstant
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- AbstractRemoteConstant
- Jira4R::V2::RemotePriority
- 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
-
#color ⇒ Object
Returns the value of attribute color.
-
#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, color = nil) ⇒ RemotePriority
constructor
A new instance of RemotePriority.
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
#color ⇒ Object
Returns the value of attribute color.
238 239 240 |
# File 'lib/jira4r/v2/jiraService.rb', line 238 def color @color end |
#description ⇒ Object
Returns the value of attribute description.
236 237 238 |
# File 'lib/jira4r/v2/jiraService.rb', line 236 def description @description end |
#icon ⇒ Object
Returns the value of attribute icon.
237 238 239 |
# File 'lib/jira4r/v2/jiraService.rb', line 237 def icon @icon end |
#id ⇒ Object
Returns the value of attribute id.
234 235 236 |
# File 'lib/jira4r/v2/jiraService.rb', line 234 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
235 236 237 |
# File 'lib/jira4r/v2/jiraService.rb', line 235 def name @name end |