Class: Increase::Models::FednowTransferCreateParams::DebtorAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::FednowTransferCreateParams::DebtorAddress
- Defined in:
- lib/increase/models/fednow_transfer_create_params.rb
Instance Attribute Summary collapse
-
#city ⇒ String
The city, district, town, or village of the address.
-
#line1 ⇒ String?
The first line of the address.
-
#postal_code ⇒ String
The postal code component of the address.
-
#state ⇒ String
The US state component of the address.
Instance Method Summary collapse
-
#initialize(city: , postal_code: , state: , line1: nil) ⇒ Object
constructor
The debtor’s address.
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: , postal_code: , state: , line1: nil) ⇒ Object
The debtor’s address.
|
|
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 175
|
Instance Attribute Details
#city ⇒ String
The city, district, town, or village of the address.
155 |
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 155 required :city, String |
#line1 ⇒ String?
The first line of the address. This is usually the street number and street.
173 |
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 173 optional :line1, String |
#postal_code ⇒ String
The postal code component of the address.
161 |
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 161 required :postal_code, String |
#state ⇒ String
The US state component of the address.
167 |
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 167 required :state, String |