Class: Increase::Models::IntrafiBalance::Balance::BankLocation
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::IntrafiBalance::Balance::BankLocation
- Defined in:
- lib/increase/models/intrafi_balance.rb,
sig/increase/models/intrafi_balance.rbs
Overview
Instance Attribute Summary collapse
-
#city ⇒ String
The bank's city.
-
#state ⇒ String
The bank's state.
Instance Method Summary collapse
-
#initialize ⇒ BankLocation
constructor
A new instance of BankLocation.
- #to_hash ⇒ { city: String, state: String }
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 ⇒ BankLocation
Returns a new instance of BankLocation.
77 |
# File 'sig/increase/models/intrafi_balance.rbs', line 77
def initialize: (city: String, state: String) -> void
|
Instance Attribute Details
#city ⇒ String
The bank's city.
104 |
# File 'lib/increase/models/intrafi_balance.rb', line 104 required :city, String |
#state ⇒ String
The bank's state.
110 |
# File 'lib/increase/models/intrafi_balance.rb', line 110 required :state, String |
Instance Method Details
#to_hash ⇒ { city: String, state: String }
79 |
# File 'sig/increase/models/intrafi_balance.rbs', line 79
def to_hash: -> { city: String, state: String }
|