Class: EveOnline::ESI::CharacterWallet
- Defined in:
- lib/eve_online/esi/character_wallet.rb
Constant Summary collapse
- API_PATH =
"/v1/characters/%<character_id>s/wallet/"
Constants inherited from Base
Instance Attribute Summary collapse
-
#character_id ⇒ Object
readonly
Returns the value of attribute character_id.
Attributes inherited from Base
#_open_timeout, #_read_timeout, #_write_timeout, #adapter, #language, #middlewares, #token
Instance Method Summary collapse
- #as_json ⇒ Object
-
#initialize(options) ⇒ CharacterWallet
constructor
A new instance of CharacterWallet.
- #path ⇒ Object
- #scope ⇒ Object
- #wallet ⇒ Object
Methods inherited from Base
#add_middleware, #additional_query_params, #base_query_params, #connection, #error_limit_remain, #error_limit_reset, #http_method, #open_timeout, #open_timeout=, #page, #query, #read_timeout, #read_timeout=, #request_id, #resource, #response, #total_pages, #uri, #url, #user_agent, #write_timeout, #write_timeout=
Constructor Details
#initialize(options) ⇒ CharacterWallet
Returns a new instance of CharacterWallet.
10 11 12 13 14 |
# File 'lib/eve_online/esi/character_wallet.rb', line 10 def initialize() super @character_id = .fetch(:character_id) end |
Instance Attribute Details
#character_id ⇒ Object (readonly)
Returns the value of attribute character_id.
8 9 10 |
# File 'lib/eve_online/esi/character_wallet.rb', line 8 def character_id @character_id end |
Instance Method Details
#as_json ⇒ Object
16 17 18 19 20 |
# File 'lib/eve_online/esi/character_wallet.rb', line 16 def as_json { wallet: wallet } end |
#path ⇒ Object
30 31 32 |
# File 'lib/eve_online/esi/character_wallet.rb', line 30 def path format(API_PATH, character_id: character_id) end |
#scope ⇒ Object
26 27 28 |
# File 'lib/eve_online/esi/character_wallet.rb', line 26 def scope "esi-wallet.read_character_wallet.v1" end |
#wallet ⇒ Object
22 23 24 |
# File 'lib/eve_online/esi/character_wallet.rb', line 22 def wallet response end |