Sha256: 8ca93f45d8e2f69cf48588e9dc77ac8d6e44d22582b922992ce69f1e5fe5a53a
Contents?: true
Size: 1.29 KB
Versions: 13
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Attributes < Base def as_json { accrued_remap_cooldown_date: accrued_remap_cooldown_date, bonus_remaps: bonus_remaps, charisma: charisma, intelligence: intelligence, last_remap_date: last_remap_date, memory: memory, perception: perception, willpower: willpower } end def accrued_remap_cooldown_date accrued_remap_cooldown_date = options['accrued_remap_cooldown_date'] parse_datetime_with_timezone(accrued_remap_cooldown_date) if accrued_remap_cooldown_date end def bonus_remaps options['bonus_remaps'] end def charisma options['charisma'] end def intelligence options['intelligence'] end def last_remap_date last_remap_date = options['last_remap_date'] parse_datetime_with_timezone(last_remap_date) if last_remap_date end def memory options['memory'] end def perception options['perception'] end def willpower options['willpower'] end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems