class EveOnline::ESI::CharacterWallet
Constants
- API_PATH
Attributes
character_id[R]
Public Class Methods
new(options)
click to toggle source
Calls superclass method
EveOnline::ESI::Base::new
# File lib/eve_online/esi/character_wallet.rb, line 10 def initialize(options) super @character_id = options.fetch(:character_id) end
Public Instance Methods
as_json()
click to toggle source
# File lib/eve_online/esi/character_wallet.rb, line 16 def as_json { wallet: wallet } end
path()
click to toggle source
# File lib/eve_online/esi/character_wallet.rb, line 30 def path format(API_PATH, character_id: character_id) end
scope()
click to toggle source
# File lib/eve_online/esi/character_wallet.rb, line 26 def scope "esi-wallet.read_character_wallet.v1" end
wallet()
click to toggle source
# File lib/eve_online/esi/character_wallet.rb, line 22 def wallet response end