Sha256: 4973c126f487971226fde9bc3e6cddf2c2ce5dd9292625fb12fd516551f60e79
Contents?: true
Size: 401 Bytes
Versions: 16
Compression:
Stored size: 401 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class AllianceIcon < Base def as_json { icon_medium: icon_medium, icon_small: icon_small } end def icon_medium options["px128x128"] end def icon_small options["px64x64"] end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems