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, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of IdNumber.



1926
1927
1928
1929
1930
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1926

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



1920
1921
1922
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1920

def registrar
  @registrar
end

#typeObject

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



1922
1923
1924
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1922

def type
  @type
end

#valueObject

The value of the ID number.



1924
1925
1926
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1924

def value
  @value
end