Class: Lithic::Models::ThreeDSAuthentication::Cardholder::ShippingAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::ThreeDSAuthentication::Cardholder::ShippingAddress
- 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.
433 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 433 optional :address1, String, nil?: true |
#address2 ⇒ String?
Second line of the street address provided by the cardholder.
439 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 439 optional :address2, String, nil?: true |
#address3 ⇒ String?
Third line of the street address provided by the cardholder.
445 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 445 optional :address3, String, nil?: true |
#city ⇒ String?
City of the address provided by the cardholder.
451 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 451 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)
458 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 458 optional :country, String, nil?: true |
#postal_code ⇒ String?
Postal code (e.g., ZIP code) of the address provided by the cardholder
464 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 464 optional :postal_code, String, nil?: true |