Class: Lithic::Models::ThreeDSAuthentication::Cardholder::BillingAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::ThreeDSAuthentication::Cardholder::BillingAddress
- Defined in:
- lib/lithic/models/three_ds_authentication.rb
Overview
Instance Attribute Summary collapse
-
#address1 ⇒ String?
First line of the street address provided by the cardholder.
-
#address2 ⇒ String?
Second line of the street address provided by the cardholder.
-
#address3 ⇒ String?
Third line of the street address provided by the cardholder.
-
#city ⇒ String?
City of the address provided by the cardholder.
-
#country ⇒ String?
Country of the address provided by the cardholder in ISO 3166-1 alpha-3 format (e.g. USA).
-
#postal_code ⇒ String?
Postal code (e.g., ZIP code) of the address provided by the cardholder.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from Lithic::Internal::Type::BaseModel
Instance Attribute Details
#address1 ⇒ String?
First line of the street address provided by the cardholder.
374 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 374 optional :address1, String, nil?: true |
#address2 ⇒ String?
Second line of the street address provided by the cardholder.
380 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 380 optional :address2, String, nil?: true |
#address3 ⇒ String?
Third line of the street address provided by the cardholder.
386 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 386 optional :address3, String, nil?: true |
#city ⇒ String?
City of the address provided by the cardholder.
392 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 392 optional :city, String, nil?: true |
#country ⇒ String?
Country of the address provided by the cardholder in ISO 3166-1 alpha-3 format (e.g. USA)
399 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 399 optional :country, String, nil?: true |
#postal_code ⇒ String?
Postal code (e.g., ZIP code) of the address provided by the cardholder
405 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 405 optional :postal_code, String, nil?: true |