Payout
class Payout extends Resource implements PayoutInterface
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. You can retrieve individual payouts, as well as list all payouts. Payouts are made on varying schedules, depending on your country and industry.
Traits
Properties
| string | $id | A unique identifier for the resource. | from Resource | 
| protected mixed | $response | A response from Stripe. | from Resource | 
Methods
To send funds to your own bank account, you create a new payout object.
A previously created payout can be canceled if it has not yet been paid out. Funds will be refunded to your available balance. You may not cancel automatic Stripe payouts.
No description
Details
        in Resource at         line 29
                            string
    getId()
        
    
    Returns the unique identifier for this resource.
        in Resource at         line 39
                            mixed
    getResponse()
        
    
    Returns the raw Stripe response.
        in Resource at         line 47
                    protected        void
    setProperties()
        
    
    Set the response data as properties on the class.
        in ListAll at         line 21
                            ListAll
    listAll(array $arguments = [])
        
    
    List all the resources.
This will list all of the resources from which this trait belongs to. It will then return itself, so you can method chain it, or reuse the same instantiation.
        at         line 36
                            PayoutInterface
    create(int $amount, array $arguments = [], string $key = null, string $currency = 'usd')
        
    
    To send funds to your own bank account, you create a new payout object.
Your Stripe balance must be able to cover the payout amount, or you’ll receive an “Insufficient Funds” error.
        at         line 54
                            PayoutInterface
    cancel(string $id)
        
    
    A previously created payout can be canceled if it has not yet been paid out. Funds will be refunded to your available balance. You may not cancel automatic Stripe payouts.