Class: Dodopayments::Models::CheckoutSessionRequest::BillingAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dodopayments::Models::CheckoutSessionRequest::BillingAddress
- Defined in:
- lib/dodopayments/models/checkout_session_request.rb
Overview
Instance Attribute Summary collapse
-
#city ⇒ String?
City name.
-
#country ⇒ Symbol, Dodopayments::Models::CountryCode
Two-letter ISO country code (ISO 3166-1 alpha-2).
-
#state ⇒ String?
State or province name.
-
#street ⇒ String?
Street address including house number and unit/apartment if applicable.
-
#zipcode ⇒ String?
Postal code or ZIP code.
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 Dodopayments::Internal::Type::BaseModel
Instance Attribute Details
#city ⇒ String?
City name
183 |
# File 'lib/dodopayments/models/checkout_session_request.rb', line 183 optional :city, String, nil?: true |
#country ⇒ Symbol, Dodopayments::Models::CountryCode
Two-letter ISO country code (ISO 3166-1 alpha-2)
177 |
# File 'lib/dodopayments/models/checkout_session_request.rb', line 177 required :country, enum: -> { Dodopayments::CountryCode } |
#state ⇒ String?
State or province name
189 |
# File 'lib/dodopayments/models/checkout_session_request.rb', line 189 optional :state, String, nil?: true |
#street ⇒ String?
Street address including house number and unit/apartment if applicable
195 |
# File 'lib/dodopayments/models/checkout_session_request.rb', line 195 optional :street, String, nil?: true |
#zipcode ⇒ String?
Postal code or ZIP code
201 |
# File 'lib/dodopayments/models/checkout_session_request.rb', line 201 optional :zipcode, String, nil?: true |