Class: Jira4R::V2::RemoteNamedObject

Inherits:
AbstractNamedRemoteEntity show all
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

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil) ⇒ RemoteNamedObject

Returns a new instance of RemoteNamedObject.



180
181
182
183
# File 'lib/jira4r/v2/jira_service.rb', line 180

def initialize(id = nil, name = nil)
  @id = id
  @name = name
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



177
178
179
# File 'lib/jira4r/v2/jira_service.rb', line 177

def id
  @id
end

#nameObject

Returns the value of attribute name.



178
179
180
# File 'lib/jira4r/v2/jira_service.rb', line 178

def name
  @name
end