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