Class: JIRA::AbstractNamedRemoteEntity

Inherits:
AbstractRemoteEntity show all
Defined in:
lib/JIRA-SOAP-STUBS/default.rb

Overview

http://beans.soap.rpc.jira.atlassian.comAbstractNamedRemoteEntity abstract

id - SOAP::SOAPString
name - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of AbstractNamedRemoteEntity.

[View source]

129
130
131
132
# File 'lib/JIRA-SOAP-STUBS/default.rb', line 129

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

Instance Attribute Details

#idObject

Returns the value of attribute id.


126
127
128
# File 'lib/JIRA-SOAP-STUBS/default.rb', line 126

def id
  @id
end

#nameObject

Returns the value of attribute name.


127
128
129
# File 'lib/JIRA-SOAP-STUBS/default.rb', line 127

def name
  @name
end