Class: EveApp::XmlApi::Classes::WalletTransaction
- Defined in:
- lib/eve_app/xml_api/classes.rb
Instance Attribute Summary collapse
-
#character_id ⇒ Object
readonly
Returns the value of attribute character_id.
-
#character_name ⇒ Object
readonly
Returns the value of attribute character_name.
-
#client_id ⇒ Object
readonly
Returns the value of attribute client_id.
-
#client_name ⇒ Object
readonly
Returns the value of attribute client_name.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
-
#station_id ⇒ Object
readonly
Returns the value of attribute station_id.
-
#station_name ⇒ Object
readonly
Returns the value of attribute station_name.
-
#transaction_for ⇒ Object
readonly
Returns the value of attribute transaction_for.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#type_id ⇒ Object
readonly
Returns the value of attribute type_id.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Instance Method Summary collapse
-
#initialize(elem) ⇒ WalletTransaction
constructor
A new instance of WalletTransaction.
Constructor Details
#initialize(elem) ⇒ WalletTransaction
Returns a new instance of WalletTransaction.
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/eve_app/xml_api/classes.rb', line 62 def initialize(elem) @created_at = parse_time(elem['transactionDateTime']) @id = elem['transactionID'].to_i @quantity = elem['quantity'].to_i @type_name = elem['typeName'] @type_id = elem['typeID'].to_i @price = elem['price'].to_f @client_id = elem['clientID'].to_i if elem['clientID'] @client_name = elem['clientName'] @character_name = elem['characterName'] @station_id = elem['stationID'].to_i @station_name = elem['stationName'] @character_id = elem['characterID'].to_i if elem['characterID'] && elem['characterID'] != '0' @type = elem['transactionType'] @transaction_for = elem['transactionFor'] end |
Instance Attribute Details
#character_id ⇒ Object (readonly)
Returns the value of attribute character_id.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def character_id @character_id end |
#character_name ⇒ Object (readonly)
Returns the value of attribute character_name.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def character_name @character_name end |
#client_id ⇒ Object (readonly)
Returns the value of attribute client_id.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def client_id @client_id end |
#client_name ⇒ Object (readonly)
Returns the value of attribute client_name.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def client_name @client_name end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def id @id end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def price @price end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def quantity @quantity end |
#station_id ⇒ Object (readonly)
Returns the value of attribute station_id.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def station_id @station_id end |
#station_name ⇒ Object (readonly)
Returns the value of attribute station_name.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def station_name @station_name end |
#transaction_for ⇒ Object (readonly)
Returns the value of attribute transaction_for.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def transaction_for @transaction_for end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def type @type end |
#type_id ⇒ Object (readonly)
Returns the value of attribute type_id.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def type_id @type_id end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
58 59 60 |
# File 'lib/eve_app/xml_api/classes.rb', line 58 def type_name @type_name end |