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.



2389
2390
2391
2392
2393
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2389

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).



2383
2384
2385
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2383

def registrar
  @registrar
end

#typeObject

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



2385
2386
2387
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2385

def type
  @type
end

#valueObject

The value of the ID number.



2387
2388
2389
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2387

def value
  @value
end