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

attr_accessor, new, #to_h

Constructor Details

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

Returns a new instance of IdNumber.



2973
2974
2975
2976
2977
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2973

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



2967
2968
2969
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2967

def registrar
  @registrar
end

#typeObject

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



2969
2970
2971
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2969

def type
  @type
end

#valueObject

The value of the ID number.



2971
2972
2973
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2971

def value
  @value
end