Class: Stripe::FinancialConnections::Session
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::FinancialConnections::Session
- Extended by:
- APIOperations::Create
- Defined in:
- lib/stripe/resources/financial_connections/session.rb
Overview
A Financial Connections Session is the secure way to programmatically launch the client-side Stripe.js modal that lets your users link their accounts.
Defined Under Namespace
Classes: AccountHolder, Filters
Constant Summary collapse
- OBJECT_NAME =
"financial_connections.session"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#account_holder ⇒ Object
readonly
The account holder for whom accounts are collected in this session.
-
#accounts ⇒ Object
readonly
The accounts that were collected as part of this Session.
-
#client_secret ⇒ Object
readonly
A value that will be passed to the client to launch the authentication flow.
-
#filters ⇒ Object
readonly
Attribute for field filters.
-
#id ⇒ Object
readonly
Unique identifier for the object.
-
#livemode ⇒ Object
readonly
Has the value ‘true` if the object exists in live mode or the value `false` if the object exists in test mode.
-
#object ⇒ Object
readonly
String representing the object’s type.
-
#permissions ⇒ Object
readonly
Permissions requested for accounts collected during this session.
-
#prefetch ⇒ Object
readonly
Data features requested to be retrieved upon account creation.
-
#return_url ⇒ Object
readonly
For webview integrations only.
Attributes inherited from APIResource
Attributes inherited from StripeObject
Class Method Summary collapse
-
.create(params = {}, opts = {}) ⇒ Object
To launch the Financial Connections authorization flow, create a Session.
- .field_remappings ⇒ Object
- .inner_class_types ⇒ Object
- .object_name ⇒ Object
Methods included from APIOperations::Create
Methods inherited from APIResource
class_name, custom_method, #refresh, #request_stripe_object, resource_url, #resource_url, retrieve, save_nested_resource
Methods included from APIOperations::Request
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
#account_holder ⇒ Object (readonly)
The account holder for whom accounts are collected in this session.
47 48 49 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 47 def account_holder @account_holder end |
#accounts ⇒ Object (readonly)
The accounts that were collected as part of this Session.
49 50 51 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 49 def accounts @accounts end |
#client_secret ⇒ Object (readonly)
A value that will be passed to the client to launch the authentication flow.
51 52 53 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 51 def client_secret @client_secret end |
#filters ⇒ Object (readonly)
Attribute for field filters
53 54 55 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 53 def filters @filters end |
#id ⇒ Object (readonly)
Unique identifier for the object.
55 56 57 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 55 def id @id end |
#livemode ⇒ Object (readonly)
Has the value ‘true` if the object exists in live mode or the value `false` if the object exists in test mode.
57 58 59 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 57 def livemode @livemode end |
#object ⇒ Object (readonly)
String representing the object’s type. Objects of the same type share the same value.
59 60 61 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 59 def object @object end |
#permissions ⇒ Object (readonly)
Permissions requested for accounts collected during this session.
61 62 63 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 61 def end |
#prefetch ⇒ Object (readonly)
Data features requested to be retrieved upon account creation.
63 64 65 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 63 def prefetch @prefetch end |
#return_url ⇒ Object (readonly)
For webview integrations only. Upon completing OAuth login in the native browser, the user will be redirected to this URL to return to your app.
65 66 67 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 65 def return_url @return_url end |
Class Method Details
.create(params = {}, opts = {}) ⇒ Object
To launch the Financial Connections authorization flow, create a Session. The session’s client_secret can be used to launch the flow using Stripe.js.
68 69 70 71 72 73 74 75 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 68 def self.create(params = {}, opts = {}) request_stripe_object( method: :post, path: "/v1/financial_connections/sessions", params: params, opts: opts ) end |
.field_remappings ⇒ Object
81 82 83 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 81 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
77 78 79 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 77 def self.inner_class_types @inner_class_types = { account_holder: AccountHolder, filters: Filters } end |
.object_name ⇒ Object
11 12 13 |
# File 'lib/stripe/resources/financial_connections/session.rb', line 11 def self.object_name "financial_connections.session" end |