Sha256: 7019c63078c33ec3b7ca9ee9d73fcb37823042c14cda4f62334b29f274a4cc1a

Contents?: true

Size: 859 Bytes

Versions: 2

Compression:

Stored size: 859 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class CharacterCalendarEvent < Base
      extend Forwardable

      API_PATH = '/v3/characters/%<character_id>s/calendar/%<event_id>s/'

      attr_reader :character_id, :event_id

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
        @event_id = options.fetch(:event_id)
      end

      def_delegators :model, :as_json, :date, :duration, :importance,
                     :owner_id, :owner_name, :owner_type, :event_response,
                     :text, :title

      def model
        @model ||= Models::EventDetails.new(response)
      end

      def scope
        'esi-calendar.read_calendar_events.v1'
      end

      def path
        format("#{ API_PATH }", character_id: character_id, event_id: event_id)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eve_online-0.29.0 lib/eve_online/esi/character_calendar_event.rb
eve_online-0.28.0 lib/eve_online/esi/character_calendar_event.rb