Class: Stripe::Treasury::FinancialAccountFeaturesUpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::FinancialAccountFeaturesUpdateParams
- Defined in:
- lib/stripe/params/treasury/financial_account_features_update_params.rb
Defined Under Namespace
Classes: CardIssuing, DepositInsurance, FinancialAddresses, InboundTransfers, IntraStripeFlows, OutboundPayments, OutboundTransfers
Instance Attribute Summary collapse
-
#card_issuing ⇒ Object
Encodes the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from the FinancialAccount.
-
#deposit_insurance ⇒ Object
Represents whether this FinancialAccount is eligible for deposit insurance.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#financial_addresses ⇒ Object
Contains Features that add FinancialAddresses to the FinancialAccount.
-
#inbound_transfers ⇒ Object
Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.
-
#intra_stripe_flows ⇒ Object
Represents the ability for the FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).
-
#outbound_payments ⇒ Object
Includes Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.
-
#outbound_transfers ⇒ Object
Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.
Instance Method Summary collapse
-
#initialize(card_issuing: nil, deposit_insurance: nil, expand: nil, financial_addresses: nil, inbound_transfers: nil, intra_stripe_flows: nil, outbound_payments: nil, outbound_transfers: nil) ⇒ FinancialAccountFeaturesUpdateParams
constructor
A new instance of FinancialAccountFeaturesUpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(card_issuing: nil, deposit_insurance: nil, expand: nil, financial_addresses: nil, inbound_transfers: nil, intra_stripe_flows: nil, outbound_payments: nil, outbound_transfers: nil) ⇒ FinancialAccountFeaturesUpdateParams
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 142 def initialize( card_issuing: nil, deposit_insurance: nil, expand: nil, financial_addresses: nil, inbound_transfers: nil, intra_stripe_flows: nil, outbound_payments: nil, outbound_transfers: nil ) @card_issuing = card_issuing @deposit_insurance = deposit_insurance = @financial_addresses = financial_addresses @inbound_transfers = inbound_transfers @intra_stripe_flows = intra_stripe_flows @outbound_payments = outbound_payments @outbound_transfers = outbound_transfers end |
Instance Attribute Details
#card_issuing ⇒ Object
Encodes the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from the FinancialAccount.
126 127 128 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 126 def card_issuing @card_issuing end |
#deposit_insurance ⇒ Object
Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.
128 129 130 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 128 def deposit_insurance @deposit_insurance end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
130 131 132 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 130 def end |
#financial_addresses ⇒ Object
Contains Features that add FinancialAddresses to the FinancialAccount.
132 133 134 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 132 def financial_addresses @financial_addresses end |
#inbound_transfers ⇒ Object
Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.
134 135 136 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 134 def inbound_transfers @inbound_transfers end |
#intra_stripe_flows ⇒ Object
Represents the ability for the FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).
136 137 138 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 136 def intra_stripe_flows @intra_stripe_flows end |
#outbound_payments ⇒ Object
Includes Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.
138 139 140 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 138 def outbound_payments @outbound_payments end |
#outbound_transfers ⇒ Object
Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.
140 141 142 |
# File 'lib/stripe/params/treasury/financial_account_features_update_params.rb', line 140 def outbound_transfers @outbound_transfers end |