Class: Stripe::BalanceSettings::Payments::Payouts

Inherits:
StripeObject
  • Object
show all
Defined in:
lib/stripe/resources/balance_settings.rb

Defined Under Namespace

Classes: Schedule

Constant Summary

Constants inherited from StripeObject

StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from StripeObject

#last_response

Class Method Summary collapse

Methods inherited from StripeObject

#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values

Constructor Details

This class inherits a constructor from Stripe::StripeObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject

Instance Attribute Details

#minimum_balance_by_currencyObject (readonly)

The minimum balance amount to retain per currency after automatic payouts. Only funds that exceed these amounts are paid out. Learn more about the [minimum balances for automatic payouts](/payouts/minimum-balances-for-automatic-payouts).



33
34
35
# File 'lib/stripe/resources/balance_settings.rb', line 33

def minimum_balance_by_currency
  @minimum_balance_by_currency
end

#scheduleObject (readonly)

Details on when funds from charges are available, and when they are paid out to an external account. See our [Setting Bank and Debit Card Payouts](stripe.com/docs/connect/bank-transfers#payout-information) documentation for details.



35
36
37
# File 'lib/stripe/resources/balance_settings.rb', line 35

def schedule
  @schedule
end

#statement_descriptorObject (readonly)

The text that appears on the bank account statement for payouts. If not set, this defaults to the platform’s bank descriptor as set in the Dashboard.



37
38
39
# File 'lib/stripe/resources/balance_settings.rb', line 37

def statement_descriptor
  @statement_descriptor
end

#statusObject (readonly)

Whether the funds in this account can be paid out.



39
40
41
# File 'lib/stripe/resources/balance_settings.rb', line 39

def status
  @status
end

Class Method Details

.field_remappingsObject



45
46
47
# File 'lib/stripe/resources/balance_settings.rb', line 45

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



41
42
43
# File 'lib/stripe/resources/balance_settings.rb', line 41

def self.inner_class_types
  @inner_class_types = { schedule: Schedule }
end