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.
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1003 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.
995 996 997 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 995 def attestations @attestations end |
#business_details ⇒ Object
Information about the company or business.
997 998 999 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 997 def business_details @business_details end |
#entity_type ⇒ Object
The entity type.
999 1000 1001 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 999 def entity_type @entity_type end |
#individual ⇒ Object
Information about the person represented by the account.
1001 1002 1003 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1001 def individual @individual end |