Sha256: f09ca8d7850679641cd663aa6942df659599adb56e1163d6441bfd665efa5a68
Contents?: true
Size: 774 Bytes
Versions: 16
Compression:
Stored size: 774 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
16 entries across 16 versions & 1 rubygems