lib/gw2/commerce/prices.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GW2
  module Commerce
    module Prices
      extend Resource

      def self.all
        get("/commerce/prices.json")
      end

      def self.details(pricing_id)
        get("/commerce/prices/#{pricing_id}.json")
      end

    end
  end
end