lib/mws/sellers.rb in peddler-0.7.0 vs lib/mws/sellers.rb in peddler-0.7.1

- old
+ new

@@ -8,31 +8,31 @@ # Lists the marketplaces the seller participates in # # @see http://docs.developer.amazonservices.com/en_US/sellers/Sellers_ListMarketplaceParticipations.html # @param next_token [String] - # @return [Peddler::Parser] + # @return [Peddler::XMLParser] def list_marketplace_participations operation('ListMarketplaceParticipations') run end # Lists the next page of marketplaces the seller participates in # # @see http://docs.developer.amazonservices.com/en_US/sellers/Sellers_ListMarketplaceParticipationsByNextToken.html # @param next_token [String] - # @return [Peddler::Parser] + # @return [Peddler::XMLParser] def list_marketplace_participations_by_next_token(next_token) operation('ListMarketplaceParticipationsByNextToken') .add('NextToken' => next_token) run end # Gets the service status of the API # # @see http://docs.developer.amazonservices.com/en_US/sellers/MWS_GetServiceStatus.html - # @return [Peddler::Parser] + # @return [Peddler::XMLParser] def get_service_status operation('GetServiceStatus') run end end