Module: FinchAPI::Models::HRIS::Payment::PayFrequency

Extended by:
Internal::Type::Enum
Defined in:
lib/finch_api/models/hris/payment.rb

Constant Summary collapse

ANNUALLY =
:annually
BI_WEEKLY =
:bi_weekly
DAILY =
:daily
MONTHLY =
:monthly
OTHER =
:other
QUARTERLY =
:quarterly
SEMI_ANNUALLY =
:semi_annually
SEMI_MONTHLY =
:semi_monthly
WEEKLY =
:weekly

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Instance Method Details

#initialize(id:, company_debit:, debit_date:, employee_taxes:, employer_taxes:, gross_pay:, individual_ids:, net_pay:, pay_date:, pay_frequencies:, pay_group_ids:, pay_period:) ⇒ Object

Parameters:



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/finch_api/models/hris/payment.rb', line 100

module PayFrequency
  extend FinchAPI::Internal::Type::Enum

  ANNUALLY = :annually
  BI_WEEKLY = :bi_weekly
  DAILY = :daily
  MONTHLY = :monthly
  OTHER = :other
  QUARTERLY = :quarterly
  SEMI_ANNUALLY = :semi_annually
  SEMI_MONTHLY = :semi_monthly
  WEEKLY = :weekly

  # @!method self.values
  #   @return [Array<Symbol>]
end