Class: Jira4R::V2::AbstractNamedRemoteEntity
- Inherits:
-
AbstractRemoteEntity
- Object
- AbstractRemoteEntity
- Jira4R::V2::AbstractNamedRemoteEntity
- Defined in:
- lib/jira4r/v2/jira_service.rb
Overview
http://beans.soap.rpc.jira.atlassian.comAbstractNamedRemoteEntity abstract
id - SOAP::SOAPString
name - SOAP::SOAPString
Direct Known Subclasses
AbstractRemoteConstant, RemoteComponent, RemoteField, RemoteFilter, RemoteNamedObject, RemoteProject, RemoteVersion
Instance Attribute Summary (collapse)
-
- (Object) id
Returns the value of attribute id.
-
- (Object) name
Returns the value of attribute name.
Instance Method Summary (collapse)
-
- (AbstractNamedRemoteEntity) initialize(id = nil, name = nil)
constructor
A new instance of AbstractNamedRemoteEntity.
Constructor Details
- (AbstractNamedRemoteEntity) initialize(id = nil, name = nil)
A new instance of AbstractNamedRemoteEntity
114 115 116 117 |
# File 'lib/jira4r/v2/jira_service.rb', line 114 def initialize(id = nil, name = nil) @id = id @name = name end |
Instance Attribute Details
- (Object) id
Returns the value of attribute id
111 112 113 |
# File 'lib/jira4r/v2/jira_service.rb', line 111 def id @id end |
- (Object) name
Returns the value of attribute name
112 113 114 |
# File 'lib/jira4r/v2/jira_service.rb', line 112 def name @name end |