Class: Stripe::V2::Core::AccountTokenCreateParams::Identity
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountTokenCreateParams::Identity
- Defined in:
- lib/stripe/params/v2/core/account_token_create_params.rb
Defined Under Namespace
Classes: Attestations, BusinessDetails, Individual
Instance Attribute Summary collapse
-
#attestations ⇒ Object
Attestations from the identity’s key people, e.g.
-
#business_details ⇒ Object
Information about the company or business.
-
#entity_type ⇒ Object
The entity type.
-
#individual ⇒ Object
Information about the person represented by the account.
Instance Method Summary collapse
-
#initialize(attestations: nil, business_details: nil, entity_type: nil, individual: nil) ⇒ Identity
constructor
A new instance of Identity.
Methods inherited from RequestParams
Constructor Details
#initialize(attestations: nil, business_details: nil, entity_type: nil, individual: nil) ⇒ Identity
Returns a new instance of Identity.
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1232 def initialize( attestations: nil, business_details: nil, entity_type: nil, individual: nil ) @attestations = attestations @business_details = business_details @entity_type = entity_type @individual = individual end |
Instance Attribute Details
#attestations ⇒ Object
Attestations from the identity’s key people, e.g. owners, executives, directors, representatives.
1224 1225 1226 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1224 def attestations @attestations end |
#business_details ⇒ Object
Information about the company or business.
1226 1227 1228 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1226 def business_details @business_details end |
#entity_type ⇒ Object
The entity type.
1228 1229 1230 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1228 def entity_type @entity_type end |
#individual ⇒ Object
Information about the person represented by the account.
1230 1231 1232 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1230 def individual @individual end |