Class: Stripe::FinancialConnections::AccountRefreshParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/financial_connections/account_refresh_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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 = expand
  @features = features
end

Instance Attribute Details

#expandObject

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
  @expand
end

#featuresObject

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