Class: Stripe::V2::Core::AccountUpdateParams::Identity::BusinessDetails::IdNumber

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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

Returns a new instance of IdNumber.



1472
1473
1474
1475
1476
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1472

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

Instance Attribute Details

#registrarObject

The registrar of the ID number (Only valid for DE ID number types).



1466
1467
1468
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1466

def registrar
  @registrar
end

#typeObject

Open Enum. The ID number type of a business entity.



1468
1469
1470
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1468

def type
  @type
end

#valueObject

The value of the ID number.



1470
1471
1472
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1470

def value
  @value
end