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.
Class Method Summary collapse
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
attr_accessor, coerce_params, coerce_value, new, #to_h
Constructor Details
#initialize(attestations: nil, business_details: nil, entity_type: nil, individual: nil) ⇒ Identity
Returns a new instance of Identity.
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1261 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.
1253 1254 1255 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1253 def attestations @attestations end |
#business_details ⇒ Object
Information about the company or business.
1255 1256 1257 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1255 def business_details @business_details end |
#entity_type ⇒ Object
The entity type.
1257 1258 1259 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1257 def entity_type @entity_type end |
#individual ⇒ Object
Information about the person represented by the account.
1259 1260 1261 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1259 def individual @individual end |
Class Method Details
.field_encodings ⇒ Object
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 |
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1273 def self.field_encodings @field_encodings = { individual: { kind: :object, fields: { relationship: { kind: :object, fields: { percent_ownership: :decimal_string } }, }, }, } end |