Class: GustoEmbedded::Operations::HomeAddress
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Operations::HomeAddress
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/operations/home_address.rb
Overview
The signatory’s home address
Instance Method Summary collapse
-
#initialize(city: nil, state: nil, street_1: nil, zip: nil, street_2: nil) ⇒ HomeAddress
constructor
A new instance of HomeAddress.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(city: nil, state: nil, street_1: nil, zip: nil, street_2: nil) ⇒ HomeAddress
Returns a new instance of HomeAddress.
27 28 29 30 31 32 33 |
# File 'lib/gusto_embedded/models/operations/home_address.rb', line 27 def initialize(city: nil, state: nil, street_1: nil, zip: nil, street_2: nil) @city = city @state = state @street_1 = street_1 @zip = zip @street_2 = street_2 end |