Class: EveApp::XmlApi::Classes::WalletTransaction

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) ⇒ 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_idObject (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_nameObject (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_idObject (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_nameObject (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_atObject (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

#idObject (readonly)

Returns the value of attribute id.


58
59
60
# File 'lib/eve_app/xml_api/classes.rb', line 58

def id
  @id
end

#priceObject (readonly)

Returns the value of attribute price.


58
59
60
# File 'lib/eve_app/xml_api/classes.rb', line 58

def price
  @price
end

#quantityObject (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_idObject (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_nameObject (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_forObject (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

#typeObject (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_idObject (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_nameObject (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