Class: Dodopayments::Models::BillingAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dodopayments::Models::BillingAddress
- Defined in:
- lib/dodopayments/models/billing_address.rb
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.
Instance Method Summary collapse
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(city: , country: , state: , street: , zipcode: ) ⇒ Object
|
|
# File 'lib/dodopayments/models/billing_address.rb', line 36
|
Instance Attribute Details
#city ⇒ String
City name
10 |
# File 'lib/dodopayments/models/billing_address.rb', line 10 required :city, String |
#country ⇒ Symbol, Dodopayments::Models::CountryCode
Two-letter ISO country code (ISO 3166-1 alpha-2)
16 |
# File 'lib/dodopayments/models/billing_address.rb', line 16 required :country, enum: -> { Dodopayments::CountryCode } |
#state ⇒ String
State or province name
22 |
# File 'lib/dodopayments/models/billing_address.rb', line 22 required :state, String |
#street ⇒ String
Street address including house number and unit/apartment if applicable
28 |
# File 'lib/dodopayments/models/billing_address.rb', line 28 required :street, String |
#zipcode ⇒ String
Postal code or ZIP code
34 |
# File 'lib/dodopayments/models/billing_address.rb', line 34 required :zipcode, String |