Class: GustoEmbedded::Shared::ExternalPayrollBasic
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::ExternalPayrollBasic
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/external_payroll_basic.rb
Overview
The representation of an external payroll with minimal information.
Instance Method Summary collapse
-
#initialize(uuid: nil, check_date: nil, company_uuid: nil, payment_period_end_date: nil, payment_period_start_date: nil, status: nil) ⇒ ExternalPayrollBasic
constructor
A new instance of ExternalPayrollBasic.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(uuid: nil, check_date: nil, company_uuid: nil, payment_period_end_date: nil, payment_period_start_date: nil, status: nil) ⇒ ExternalPayrollBasic
Returns a new instance of ExternalPayrollBasic.
29 30 31 32 33 34 35 36 |
# File 'lib/gusto_embedded/models/shared/external_payroll_basic.rb', line 29 def initialize(uuid: nil, check_date: nil, company_uuid: nil, payment_period_end_date: nil, payment_period_start_date: nil, status: nil) @uuid = uuid @check_date = check_date @company_uuid = company_uuid @payment_period_end_date = payment_period_end_date @payment_period_start_date = payment_period_start_date @status = status end |