Sha256: 3d5c4f04b1e4a60277b7df7bdad67ffa8416ba09ddff39e962634936e2a5b17b
Contents?: true
Size: 584 Bytes
Versions: 16
Compression:
Stored size: 584 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterWallet < Base API_PATH = "/v1/characters/%<character_id>s/wallet/" attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def as_json { wallet: wallet } end def wallet response end def scope "esi-wallet.read_character_wallet.v1" end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems