Skip to content

Commit 587db4e

Browse files
committed
Fixes.
1 parent 2b22b3a commit 587db4e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lib/square/api/refunds_api.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ class RefundsApi < BaseApi
4040
# to be returned in a single page. It is possible to receive fewer results
4141
# than the specified limit on a given page. If the supplied value is
4242
# greater than 100, no more than 100 results are returned. Default: 100
43+
# @param [String] updated_at_begin_time Optional parameter: Indicates the
44+
# start of the time range to retrieve each `PaymentRefund` for, in RFC 3339
45+
# format. The range is determined using the `updated_at` field for each
46+
# `PaymentRefund`. Default: if omitted, the time range starts at
47+
# `begin_time`.
48+
# @param [String] updated_at_end_time Optional parameter: Indicates the end
49+
# of the time range to retrieve each `PaymentRefund` for, in RFC 3339
50+
# format. The range is determined using the `updated_at` field for each
51+
# `PaymentRefund`. Default: The current time.
52+
# @param [String] sort_field Optional parameter: The field used to sort
53+
# results by. The default is `CREATED_AT`. Current values include
54+
# `CREATED_AT` and `UPDATED_AT`.
4355
# @return [ApiResponse] the complete http response with raw body and status code.
4456
def list_payment_refunds(begin_time: nil,
4557
end_time: nil,

0 commit comments

Comments
 (0)