Class: PaypalServerSdk::TaxIdType
- Inherits:
-
Object
- Object
- PaypalServerSdk::TaxIdType
- Defined in:
- lib/paypal_server_sdk/models/tax_id_type.rb
Overview
The customer’s tax ID type.
Constant Summary collapse
- TAX_ID_TYPE =
[ # The individual tax ID type, typically is 11 characters long. BR_CPF = 'BR_CPF'.freeze, # The business tax ID type, typically is 14 characters long. BR_CNPJ = 'BR_CNPJ'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
17 18 19 20 21 |
# File 'lib/paypal_server_sdk/models/tax_id_type.rb', line 17 def self.validate(value) return false if value.nil? true end |