Class: Stripe::V2::Core::AccountTokenCreateParams::Identity

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_token_create_params.rb

Defined Under Namespace

Classes: Attestations, BusinessDetails, Individual

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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.



991
992
993
994
995
996
997
998
999
1000
1001
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 991

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

#attestationsObject

Attestations from the identity’s key people, e.g. owners, executives, directors, representatives.



983
984
985
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 983

def attestations
  @attestations
end

#business_detailsObject

Information about the company or business.



985
986
987
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 985

def business_details
  @business_details
end

#entity_typeObject

The entity type.



987
988
989
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 987

def entity_type
  @entity_type
end

#individualObject

Information about the person represented by the account.



989
990
991
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 989

def individual
  @individual
end

Class Method Details

.field_encodingsObject



1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
# File 'lib/stripe/params/v2/core/account_token_create_params.rb', line 1003

def self.field_encodings
  @field_encodings = {
    individual: {
      kind: :object,
      fields: {
        relationship: { kind: :object, fields: { percent_ownership: :decimal_string } },
      },
    },
  }
end