# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe # A `Payout` object is created when you receive funds from Stripe, or when you # initiate a payout to either a bank account or debit card of a [connected # Stripe account](https://stripe.com/docs/connect/bank-debit-card-payouts). You can retrieve individual payouts, # and list all payouts. Payouts are made on [varying # schedules](https://stripe.com/docs/connect/manage-payout-schedule), depending on your country and # industry. # # Related guide: [Receiving payouts](https://stripe.com/docs/payouts) class Payout < APIResource extend Stripe::APIOperations::Create extend Stripe::APIOperations::List include Stripe::APIOperations::Save OBJECT_NAME = "payout" # You can cancel a previously created payout if its status is pending. Stripe refunds the funds to your available balance. You can't cancel automatic Stripe payouts. def cancel(params = {}, opts = {}) request_stripe_object( method: :post, path: format("/v1/payouts/%s/cancel", { payout: CGI.escape(self["id"]) }), 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. # # 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 = {}) request_stripe_object( method: :post, path: format("/v1/payouts/%s/reverse", { payout: CGI.escape(self["id"]) }), params: params, opts: opts ) end # You can cancel a previously created payout if its status is pending. Stripe refunds the funds to your available balance. You can't cancel automatic Stripe payouts. def self.cancel(payout, params = {}, opts = {}) request_stripe_object( method: :post, path: format("/v1/payouts/%s/cancel", { payout: CGI.escape(payout) }), 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. # # 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 = {}) request_stripe_object( method: :post, path: format("/v1/payouts/%s/reverse", { payout: CGI.escape(payout) }), params: params, opts: opts ) end # To send funds to your own bank account, create a new payout object. Your [Stripe balance](https://stripe.com/docs/api#balance) must cover the payout amount. If it doesn't, you receive an “Insufficient Funds” error. # # If your API key is in test mode, money won't actually be sent, though every other action occurs as if you're in live mode. # # If you create a manual payout on a Stripe account that uses multiple payment source types, you need to specify the source type balance that the payout draws from. The [balance object](https://stripe.com/docs/api#balance_object) details available and pending amounts by source type. def self.create(params = {}, opts = {}) request_stripe_object(method: :post, path: "/v1/payouts", params: params, opts: opts) end # Returns a list of existing payouts sent to third-party bank accounts or payouts that Stripe sent to you. The payouts return in sorted order, with the most recently created payouts appearing first. def self.list(filters = {}, opts = {}) request_stripe_object(method: :get, path: "/v1/payouts", params: filters, opts: opts) end # Updates the specified payout by setting the values of the parameters you pass. We don't change parameters that you don't provide. This request only accepts the metadata as arguments. def self.update(id, params = {}, opts = {}) request_stripe_object( method: :post, path: format("/v1/payouts/%s", { id: CGI.escape(id) }), params: params, opts: opts ) end end end