Sha256: 865a031668b12bdc783c481f6f671bab5389c637b3be29eb79f05938fbed0ac8
Contents?: true
Size: 521 Bytes
Versions: 16
Compression:
Stored size: 521 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class MarketPrice < Base def as_json { adjusted_price: adjusted_price, average_price: average_price, type_id: type_id } end def adjusted_price options["adjusted_price"] end def average_price options["average_price"] end def type_id options["type_id"] end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems