class ShopifyURL::Admin::Order

Public Class Methods

new(host, id, qs = nil) click to toggle source
Calls superclass method
# File lib/shopify_url.rb, line 140
def initialize(host, id, qs = nil)
  super host + "/orders/" << id.to_s
  self << "?" << qs if qs
end

Public Instance Methods

shipping_labels() click to toggle source
# File lib/shopify_url.rb, line 145
def shipping_labels
  ShippingLabel.new(self + "/shipping_labels")
end