Sha256: b1f300723cb539720927fc60675b270f7194cf9f06a408cc7755c890f5695727
Contents?: true
Size: 673 Bytes
Versions: 15
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true require "forwardable" module EveOnline module ESI class CharacterOnline < Base extend Forwardable API_PATH = "/v3/characters/%<character_id>s/online/" attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def_delegators :model, :as_json, :last_login, :last_logout, :logins, :online def model @model ||= Models::Online.new(response) end def scope "esi-location.read_online.v1" end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems