lib/mws/finances/client.rb in peddler-1.6.3 vs lib/mws/finances/client.rb in peddler-1.6.4
- old
+ new
@@ -1,5 +1,7 @@
+# frozen_string_literal: true
+
require 'peddler/client'
module MWS
module Finances
# With the MWS Finances API you can retrieve financial transactions for your
@@ -41,12 +43,14 @@
# @param [String, #iso8601] financial_event_group_started_after
# @param [Hash] opts
# @option opts [Integer] :max_results_per_page
# @option opts [String, #iso8601] :financial_event_group_started_before
# @return [Peddler::XMLParser]
- def list_financial_event_groups(financial_event_group_started_after, opts = {})
+ def list_financial_event_groups(financial_event_group_started_after,
+ opts = {})
operation('ListFinancialEventGroups')
- .add('FinancialEventGroupStartedAfter' => financial_event_group_started_after)
+ .add('FinancialEventGroupStartedAfter' =>
+ financial_event_group_started_after)
.add(opts)
run
end