Class: EveApp::XmlApi::Classes::CorporateMemberSecurity
- Defined in:
- lib/eve_app/xml_api/classes.rb
Instance Attribute Summary collapse
-
#character_id ⇒ Object
readonly
Returns the value of attribute character_id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#titles ⇒ Object
readonly
Returns the value of attribute titles.
Instance Method Summary collapse
-
#initialize(elem) ⇒ CorporateMemberSecurity
constructor
A new instance of CorporateMemberSecurity.
Constructor Details
permalink #initialize(elem) ⇒ CorporateMemberSecurity
Returns a new instance of CorporateMemberSecurity.
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
permalink #character_id ⇒ Object (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 |
permalink #name ⇒ Object (readonly)
Returns the value of attribute name.
240 241 242 |
# File 'lib/eve_app/xml_api/classes.rb', line 240 def name @name end |
permalink #titles ⇒ Object (readonly)
Returns the value of attribute titles.
240 241 242 |
# File 'lib/eve_app/xml_api/classes.rb', line 240 def titles @titles end |