class MWS::MerchantFulfillment::ShippingServices

Public Instance Methods

each() { |shipping_service| ... } click to toggle source
# File lib/mws/merchant_fulfillment/shipping_services.rb, line 9
def each
  xpath('ShippingServiceList/ShippingService').each { |node|
    yield ShippingService.new(node)
  }
end