module Shopkit::Client::Orders
Public Instance Methods
order(id, options={})
click to toggle source
# File lib/shopkit/client/orders.rb, line 11 def order(id, options={}) get("/orders/#{id}", options)['order'] end
orders(options={})
click to toggle source
# File lib/shopkit/client/orders.rb, line 5 def orders(options={}) traversal(options) do get('/orders', options)['orders'] end end