Module: FinchAPI::Models::Payroll::PayGroupListResponse::PayFrequency

Extended by:
Internal::Type::Enum
Defined in:
lib/finch_api/models/payroll/pay_group_list_response.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

Class Method Summary collapse

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

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/finch_api/models/payroll/pay_group_list_response.rb', line 47

Instance Method Details

#initialize(id: , name: , pay_frequencies: ) ⇒ Object

Parameters:



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/finch_api/models/payroll/pay_group_list_response.rb', line 34

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