Class: Jira4R::V2::RemoteNamedObject
- Inherits:
-
AbstractNamedRemoteEntity
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- Jira4R::V2::RemoteNamedObject
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteNamedObject
id - SOAP::SOAPString
name - SOAP::SOAPString
Instance Attribute Summary collapse
-
#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) ⇒ RemoteNamedObject
constructor
A new instance of RemoteNamedObject.
Constructor Details
#initialize(id = nil, name = nil) ⇒ RemoteNamedObject
Returns a new instance of RemoteNamedObject.
164 165 166 167 |
# File 'lib/jira4r/v2/jiraService.rb', line 164 def initialize(id = nil, name = nil) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
161 162 163 |
# File 'lib/jira4r/v2/jiraService.rb', line 161 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
162 163 164 |
# File 'lib/jira4r/v2/jiraService.rb', line 162 def name @name end |