Class: GustoEmbedded::Shared::EmployeeAddress
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::EmployeeAddress
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/employee_address.rb
Instance Method Summary collapse
-
#initialize(active: nil, city: nil, country: nil, courtesy_withholding: nil, effective_date: nil, employee_uuid: nil, state: nil, street_1: nil, street_2: nil, uuid: nil, version: nil, zip: nil) ⇒ EmployeeAddress
constructor
A new instance of EmployeeAddress.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(active: nil, city: nil, country: nil, courtesy_withholding: nil, effective_date: nil, employee_uuid: nil, state: nil, street_1: nil, street_2: nil, uuid: nil, version: nil, zip: nil) ⇒ EmployeeAddress
Returns a new instance of EmployeeAddress.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/gusto_embedded/models/shared/employee_address.rb', line 41 def initialize(active: nil, city: nil, country: nil, courtesy_withholding: nil, effective_date: nil, employee_uuid: nil, state: nil, street_1: nil, street_2: nil, uuid: nil, version: nil, zip: nil) @active = active @city = city @country = country @courtesy_withholding = courtesy_withholding @effective_date = effective_date @employee_uuid = employee_uuid @state = state @street_1 = street_1 @street_2 = street_2 @uuid = uuid @version = version @zip = zip end |