Class: Stripe::FinancialConnections::SessionCreateParams::Hosted
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FinancialConnections::SessionCreateParams::Hosted
- Defined in:
- lib/stripe/params/financial_connections/session_create_params.rb
Instance Attribute Summary collapse
-
#delivery_method ⇒ Object
How the user should enter the hosted flow.
Instance Method Summary collapse
-
#initialize(delivery_method: nil) ⇒ Hosted
constructor
A new instance of Hosted.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(delivery_method: nil) ⇒ Hosted
Returns a new instance of Hosted.
44 45 46 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 44 def initialize(delivery_method: nil) @delivery_method = delivery_method end |
Instance Attribute Details
#delivery_method ⇒ Object
How the user should enter the hosted flow. The values ‘email` and `url` can only be used if `relink_options` is provided.
42 43 44 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 42 def delivery_method @delivery_method end |