Class: GustoEmbedded::Shared::Licensee
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::Licensee
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/licensee.rb
Overview
The licensed payroll processor
Instance Method Summary collapse
-
#initialize(address: nil, city: nil, name: nil, phone_number: nil, postal_code: nil, state: nil) ⇒ Licensee
constructor
A new instance of Licensee.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(address: nil, city: nil, name: nil, phone_number: nil, postal_code: nil, state: nil) ⇒ Licensee
Returns a new instance of Licensee.
29 30 31 32 33 34 35 36 |
# File 'lib/gusto_embedded/models/shared/licensee.rb', line 29 def initialize(address: nil, city: nil, name: nil, phone_number: nil, postal_code: nil, state: nil) @address = address @city = city @name = name @phone_number = phone_number @postal_code = postal_code @state = state end |