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
SEMI_ANNUALLY =
:semi_annually
QUARTERLY =
:quarterly
MONTHLY =
:monthly
SEMI_MONTHLY =
:semi_monthly
BI_WEEKLY =
:bi_weekly
WEEKLY =
:weekly
DAILY =
:daily
OTHER =
:other

Instance Method Summary collapse

Methods included from Internal::Type::Enum

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

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, type_info

Instance Method Details

#initialize(id: nil, company_debit: nil, debit_date: nil, employee_taxes: nil, employer_taxes: nil, gross_pay: nil, individual_ids: nil, net_pay: nil, pay_date: nil, pay_frequencies: nil, pay_group_ids: nil, pay_period: nil) ⇒ 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
  SEMI_ANNUALLY = :semi_annually
  QUARTERLY = :quarterly
  MONTHLY = :monthly
  SEMI_MONTHLY = :semi_monthly
  BI_WEEKLY = :bi_weekly
  WEEKLY = :weekly
  DAILY = :daily
  OTHER = :other

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