Class: Jira4R::V2::RemoteField
- Inherits:
-
AbstractNamedRemoteEntity
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- Jira4R::V2::RemoteField
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteField
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) ⇒ RemoteField
constructor
A new instance of RemoteField.
Constructor Details
#initialize(id = nil, name = nil) ⇒ RemoteField
Returns a new instance of RemoteField.
332 333 334 335 |
# File 'lib/jira4r/v2/jiraService.rb', line 332 def initialize(id = nil, name = nil) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
329 330 331 |
# File 'lib/jira4r/v2/jiraService.rb', line 329 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
330 331 332 |
# File 'lib/jira4r/v2/jiraService.rb', line 330 def name @name end |