fteem/marver

View on GitHub
lib/marver/entities/price.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Marver
  class Price
    attr_reader :type, :price

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