Class: EveApp::XmlApi::Classes::CorporateMemberSecurity

Inherits:
Base
  • Object
show all
Defined in:
lib/eve_app/xml_api/classes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(elem) ⇒ CorporateMemberSecurity

Returns a new instance of CorporateMemberSecurity.

[View source]

242
243
244
245
246
# File 'lib/eve_app/xml_api/classes.rb', line 242

def initialize(elem)
  @character_id = elem['characterID'].to_i
  @name = elem['name']
  @titles = elem.search('rowset[@name="titles"]/row').map { |t| t['titleName'] }
end

Instance Attribute Details

#character_idObject (readonly)

Returns the value of attribute character_id.


240
241
242
# File 'lib/eve_app/xml_api/classes.rb', line 240

def character_id
  @character_id
end

#nameObject (readonly)

Returns the value of attribute name.


240
241
242
# File 'lib/eve_app/xml_api/classes.rb', line 240

def name
  @name
end

#titlesObject (readonly)

Returns the value of attribute titles.


240
241
242
# File 'lib/eve_app/xml_api/classes.rb', line 240

def titles
  @titles
end