Class: Jira4R::V2::RemotePriority
- Inherits:
-
AbstractRemoteConstant
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- AbstractRemoteConstant
- Jira4R::V2::RemotePriority
- Defined in:
- lib/jira4r/v2/jira_service.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.
241 242 243 244 245 246 247 |
# File 'lib/jira4r/v2/jira_service.rb', line 241 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.
239 240 241 |
# File 'lib/jira4r/v2/jira_service.rb', line 239 def color @color end |
#description ⇒ Object
Returns the value of attribute description.
237 238 239 |
# File 'lib/jira4r/v2/jira_service.rb', line 237 def description @description end |
#icon ⇒ Object
Returns the value of attribute icon.
238 239 240 |
# File 'lib/jira4r/v2/jira_service.rb', line 238 def icon @icon end |
#id ⇒ Object
Returns the value of attribute id.
235 236 237 |
# File 'lib/jira4r/v2/jira_service.rb', line 235 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
236 237 238 |
# File 'lib/jira4r/v2/jira_service.rb', line 236 def name @name end |