Class: Stripe::V2::Core::AccountCreateParams::Identity::Individual::IdNumber

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(type: nil, value: nil) ⇒ IdNumber

Returns a new instance of IdNumber.



2850
2851
2852
2853
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2850

def initialize(type: nil, value: nil)
  @type = type
  @value = value
end

Instance Attribute Details

#typeObject

The ID number type of an individual.



2846
2847
2848
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2846

def type
  @type
end

#valueObject

The value of the ID number.



2848
2849
2850
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2848

def value
  @value
end