Class: Stripe::FinancialConnections::AccountRefreshParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FinancialConnections::AccountRefreshParams
- Defined in:
- lib/stripe/params/financial_connections/account_refresh_params.rb
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#features ⇒ Object
The list of account features that you would like to refresh.
Instance Method Summary collapse
-
#initialize(expand: nil, features: nil) ⇒ AccountRefreshParams
constructor
A new instance of AccountRefreshParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, features: nil) ⇒ AccountRefreshParams
Returns a new instance of AccountRefreshParams.
12 13 14 15 |
# File 'lib/stripe/params/financial_connections/account_refresh_params.rb', line 12 def initialize(expand: nil, features: nil) @expand = @features = features end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
8 9 10 |
# File 'lib/stripe/params/financial_connections/account_refresh_params.rb', line 8 def @expand end |
#features ⇒ Object
The list of account features that you would like to refresh.
10 11 12 |
# File 'lib/stripe/params/financial_connections/account_refresh_params.rb', line 10 def features @features end |