Class: Increase::Models::FednowTransferCreateParams::DebtorAddress

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/fednow_transfer_create_params.rb

Instance Attribute Summary collapse

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: , postal_code: , state: , line1: nil) ⇒ Object

The debtor’s address.

Parameters:

  • city (String) (defaults to: )

    The city, district, town, or village of the address.

  • postal_code (String) (defaults to: )

    The postal code component of the address.

  • state (String) (defaults to: )

    The US state component of the address.

  • line1 (String) (defaults to: nil)

    The first line of the address. This is usually the street number and street.



# File 'lib/increase/models/fednow_transfer_create_params.rb', line 175


Instance Attribute Details

#cityString

The city, district, town, or village of the address.

Returns:

  • (String)


155
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 155

required :city, String

#line1String?

The first line of the address. This is usually the street number and street.

Returns:

  • (String, nil)


173
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 173

optional :line1, String

#postal_codeString

The postal code component of the address.

Returns:

  • (String)


161
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 161

required :postal_code, String

#stateString

The US state component of the address.

Returns:

  • (String)


167
# File 'lib/increase/models/fednow_transfer_create_params.rb', line 167

required :state, String