Class: Lithic::Models::Account::VerificationAddress Deprecated
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::Account::VerificationAddress
- Defined in:
- lib/lithic/models/account.rb
Overview
Instance Attribute Summary collapse
-
#address1 ⇒ String
Valid deliverable address (no PO boxes).
-
#address2 ⇒ String?
Unit or apartment number (if applicable).
-
#city ⇒ String
City name.
-
#country ⇒ String
Country name.
-
#postal_code ⇒ String
Valid postal code.
-
#state ⇒ String
Valid state code.
Instance Method Summary collapse
-
#initialize(address1:, city:, country:, postal_code:, state:, address2: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see VerificationAddress for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(address1:, city:, country:, postal_code:, state:, address2: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Account::VerificationAddress for more details.
|
|
# File 'lib/lithic/models/account.rb', line 324
|
Instance Attribute Details
#address1 ⇒ String
Valid deliverable address (no PO boxes).
289 |
# File 'lib/lithic/models/account.rb', line 289 required :address1, String |
#address2 ⇒ String?
Unit or apartment number (if applicable).
322 |
# File 'lib/lithic/models/account.rb', line 322 optional :address2, String |
#city ⇒ String
City name.
295 |
# File 'lib/lithic/models/account.rb', line 295 required :city, String |
#country ⇒ String
Country name. Only USA is currently supported.
301 |
# File 'lib/lithic/models/account.rb', line 301 required :country, String |
#postal_code ⇒ String
Valid postal code. Only USA postal codes (ZIP codes) are currently supported, entered as a five-digit postal code or nine-digit postal code (ZIP+4) using the format 12345-1234.
309 |
# File 'lib/lithic/models/account.rb', line 309 required :postal_code, String |
#state ⇒ String
Valid state code. Only USA state codes are currently supported, entered in uppercase ISO 3166-2 two-character format.
316 |
# File 'lib/lithic/models/account.rb', line 316 required :state, String |