Class: Increase::Models::Lockbox::Address

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/lockbox.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#cityString

The city of the address.

Returns:

  • (String)


50
# File 'lib/increase/models/lockbox.rb', line 50

required :city, String

#line1String

The first line of the address.

Returns:

  • (String)


55
# File 'lib/increase/models/lockbox.rb', line 55

required :line1, String

#line2String

The second line of the address.

Returns:

  • (String)


60
# File 'lib/increase/models/lockbox.rb', line 60

required :line2, String

#postal_codeString

The postal code of the address.

Returns:

  • (String)


65
# File 'lib/increase/models/lockbox.rb', line 65

required :postal_code, String

#stateString

The two-letter United States Postal Service (USPS) abbreviation for the state of the address.

Returns:

  • (String)


70
# File 'lib/increase/models/lockbox.rb', line 70

required :state, String