Sha256: cf5c737f1a269e5936d2942573a66f1e831ea4d7622fa7ae2972a43bc07bf0d8

Contents?: true

Size: 158 Bytes

Versions: 2

Compression:

Stored size: 158 Bytes

Contents

module Thanos
  class Price
    attr_reader :type, :price

    def initialize(data)
      @type = data['type']
      @price = data['price']
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
thanos-0.6.0 lib/thanos/resources/price.rb
thanos-0.5.0 lib/thanos/resources/price.rb