Sha256: d341f5928f49805e463faa31e4995aa800d27150a8884dcc2db844044ee223f2
Contents?: true
Size: 775 Bytes
Versions: 2
Compression:
Stored size: 775 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Event < Base def as_json { event_date: event_date, event_id: event_id, event_response: event_response, importance: importance, title: title, } end def event_date event_date = options["event_date"] parse_datetime_with_timezone(event_date) if event_date end def event_id options["event_id"] end def event_response options["event_response"] end def importance options["importance"] end def title options["title"] end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.31.0 | lib/eve_online/esi/models/event.rb |
eve_online-0.30.0 | lib/eve_online/esi/models/event.rb |