Class: Increase::Models::CheckTransfer::Submission::SubmittedAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CheckTransfer::Submission::SubmittedAddress
- Defined in:
- lib/increase/models/check_transfer.rb
Overview
Instance Attribute Summary collapse
-
#city ⇒ String
The submitted address city.
-
#line1 ⇒ String
The submitted address line 1.
-
#line2 ⇒ String?
The submitted address line 2.
-
#recipient_name ⇒ String
The submitted recipient name.
-
#state ⇒ String
The submitted address state.
-
#zip ⇒ String
The submitted address zip.
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 Increase::Internal::Type::BaseModel
Instance Attribute Details
#city ⇒ String
The submitted address city.
966 |
# File 'lib/increase/models/check_transfer.rb', line 966 required :city, String |
#line1 ⇒ String
The submitted address line 1.
972 |
# File 'lib/increase/models/check_transfer.rb', line 972 required :line1, String |
#line2 ⇒ String?
The submitted address line 2.
978 |
# File 'lib/increase/models/check_transfer.rb', line 978 required :line2, String, nil?: true |
#recipient_name ⇒ String
The submitted recipient name.
984 |
# File 'lib/increase/models/check_transfer.rb', line 984 required :recipient_name, String |
#state ⇒ String
The submitted address state.
990 |
# File 'lib/increase/models/check_transfer.rb', line 990 required :state, String |
#zip ⇒ String
The submitted address zip.
996 |
# File 'lib/increase/models/check_transfer.rb', line 996 required :zip, String |