Class: Stripe::V2::Core::AccountService::CreateParams::Identity::BusinessDetails::IdNumber

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/core/account_service.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.



1342
1343
1344
1345
1346
# File 'lib/stripe/services/v2/core/account_service.rb', line 1342

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



1336
1337
1338
# File 'lib/stripe/services/v2/core/account_service.rb', line 1336

def registrar
  @registrar
end

#typeObject

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



1338
1339
1340
# File 'lib/stripe/services/v2/core/account_service.rb', line 1338

def type
  @type
end

#valueObject

The value of the ID number.



1340
1341
1342
# File 'lib/stripe/services/v2/core/account_service.rb', line 1340

def value
  @value
end