mhuggins/lol_client

View on GitHub
lib/lol_client/models/static/gold.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'lol_client/models/base'

class LolClient
  module Static
    class Gold < ModelBase
      attributes :base, :sell, :total
      attributes :purchasable, boolean: true
    end
  end
end