Sha256: f36b5582ac37dea9a97e3200a8bc970b0d36fc050a8b4faf605a1edacfbed258
Contents?: true
Size: 738 Bytes
Versions: 18
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterNotifications < Base API_PATH = "/v5/characters/%<character_id>s/notifications/" attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def notifications @notifications ||= begin output = [] response.each do |notification| output << Models::Notification.new(notification) end output end end def scope "esi-characters.read_notifications.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