dmichael/amazon-mws

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

Summary

Maintainability
A
25 mins
Test Coverage
module Amazon
  module MWS

    class GetReportListResponse < Response
      xml_name "GetReportListResponse"
      result = "GetReportListResult"

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