mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-03 00:01:21 -04:00
Merge 8743969669aad7cc27b603ec18c6768c24ec151d into 5b952efc04ad9a165003926c203b67f35546258d
This commit is contained in:
commit
5c2b91e809
@ -1 +1 @@
|
||||
2025-09-30.preview
|
||||
0de52cdca31a7c51c6d11187fc88ab23ea3a1c5b
|
@ -1 +1 @@
|
||||
v2028
|
||||
v2031
|
@ -123,7 +123,7 @@ module Stripe
|
||||
request_stripe_object(method: :get, path: "/v1/payouts", params: params, opts: opts)
|
||||
end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
def reverse(params = {}, opts = {})
|
||||
@ -135,7 +135,7 @@ module Stripe
|
||||
)
|
||||
end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
def self.reverse(payout, params = {}, opts = {})
|
||||
|
@ -507,6 +507,8 @@ module Stripe
|
||||
attr_reader :ip_address
|
||||
# Custom label given to the reader for easier identification.
|
||||
attr_reader :label
|
||||
# The last time this reader reported to Stripe backend.
|
||||
attr_reader :last_seen_at
|
||||
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
||||
attr_reader :livemode
|
||||
# The location identifier of the reader.
|
||||
|
@ -39,7 +39,7 @@ module Stripe
|
||||
)
|
||||
end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
def reverse(payout, params = {}, opts = {})
|
||||
|
@ -39068,7 +39068,7 @@ module Stripe
|
||||
}
|
||||
def self.list(params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
@ -39076,7 +39076,7 @@ module Stripe
|
||||
}
|
||||
def reverse(params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
@ -53892,6 +53892,9 @@ module Stripe
|
||||
# Custom label given to the reader for easier identification.
|
||||
sig { returns(String) }
|
||||
def label; end
|
||||
# The last time this reader reported to Stripe backend.
|
||||
sig { returns(T.nilable(Integer)) }
|
||||
def last_seen_at; end
|
||||
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
||||
sig { returns(T::Boolean) }
|
||||
def livemode; end
|
||||
@ -67876,7 +67879,7 @@ module Stripe
|
||||
}
|
||||
def retrieve(payout, params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
|
@ -135,7 +135,7 @@ module Stripe
|
||||
}
|
||||
def self.list(params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
@ -143,7 +143,7 @@ module Stripe
|
||||
}
|
||||
def reverse(params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
|
@ -524,6 +524,9 @@ module Stripe
|
||||
# Custom label given to the reader for easier identification.
|
||||
sig { returns(String) }
|
||||
def label; end
|
||||
# The last time this reader reported to Stripe backend.
|
||||
sig { returns(T.nilable(Integer)) }
|
||||
def last_seen_at; end
|
||||
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
||||
sig { returns(T::Boolean) }
|
||||
def livemode; end
|
||||
|
@ -32,7 +32,7 @@ module Stripe
|
||||
}
|
||||
def retrieve(payout, params = {}, opts = {}); end
|
||||
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
# Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
|
||||
#
|
||||
# By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
|
||||
sig {
|
||||
|
Loading…
x
Reference in New Issue
Block a user