dmichael/amazon-mws

View on GitHub
lib/amazon/mws/response/get_report_schedule_list_response.rb

Summary

Maintainability
A
25 mins
Test Coverage
module Amazon
  module MWS

    class GetReportScheduleListResponse < Response
      xml_name "GetReportScheduleListResponse"
      result = "GetReportScheduleListResult"

      xml_reader :has_next?, :in => result
      xml_reader :next_token, :in => result
      xml_reader :report_schedules, :as => [ReportSchedule], :in => result
      xml_reader :request_id, :in => "ResponseMetadata"
    end
    
  end
end