Sha256: 306c1ca17cafb40aa507c0a452ad0e71bf51d17e13ca6de3e6d0003844a4ed0b
Contents?: true
Size: 511 Bytes
Versions: 18
Compression:
Stored size: 511 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterImplants < Base API_PATH = "/v1/characters/%<character_id>s/implants/" attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def implant_ids response end def scope "esi-clones.read_implants.v1" end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems