Class: GustoEmbedded::Shared::PayrollPayrollStatusMetaType
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::PayrollPayrollStatusMetaType
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/payroll_payroll_status_meta_type.rb
Overview
Information about the payroll’s status and expected dates
Instance Method Summary collapse
-
#initialize(cancellable: nil, expected_check_date: nil, expected_debit_time: nil, initial_check_date: nil, initial_debit_cutoff_time: nil, payroll_late: nil) ⇒ PayrollPayrollStatusMetaType
constructor
A new instance of PayrollPayrollStatusMetaType.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(cancellable: nil, expected_check_date: nil, expected_debit_time: nil, initial_check_date: nil, initial_debit_cutoff_time: nil, payroll_late: nil) ⇒ PayrollPayrollStatusMetaType
Returns a new instance of PayrollPayrollStatusMetaType.
29 30 31 32 33 34 35 36 |
# File 'lib/gusto_embedded/models/shared/payroll_payroll_status_meta_type.rb', line 29 def initialize(cancellable: nil, expected_check_date: nil, expected_debit_time: nil, initial_check_date: nil, initial_debit_cutoff_time: nil, payroll_late: nil) @cancellable = cancellable @expected_check_date = expected_check_date @expected_debit_time = expected_debit_time @initial_check_date = initial_check_date @initial_debit_cutoff_time = initial_debit_cutoff_time @payroll_late = payroll_late end |