Sha256: b7ffba504439e2f052797620168d7ba370693feb3d67d5bc0683bd17a45c45ee
Contents?: true
Size: 827 Bytes
Versions: 15
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterCalendar < Base API_PATH = "/v2/characters/%<character_id>s/calendar/" attr_reader :character_id, :from_event def initialize(options) super @character_id = options.fetch(:character_id) @from_event = options.fetch(:from_event, nil) end def events @events ||= begin output = [] response.each do |event| output << Models::Event.new(event) end output end end def scope "esi-calendar.read_calendar_events.v1" end def additional_query_params [:from_event] end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems