class Etsy::Section

Public Class Methods

find(shop, id) click to toggle source
# File lib/etsy/section.rb, line 12
def self.find(shop, id)
  get("/shops/#{shop.id}/sections/#{id}")
end
find_by_shop(shop) click to toggle source
# File lib/etsy/section.rb, line 8
def self.find_by_shop(shop)
  get("/shops/#{shop.id}/sections")
end