Module: FinchAPI::Models::Payroll::PayGroupRetrieveResponse::PayFrequency
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/finch_api/models/payroll/pay_group_retrieve_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
.values ⇒ Array<Symbol>
|
|
# File 'lib/finch_api/models/payroll/pay_group_retrieve_response.rb', line 54
|
Instance Method Details
#initialize(id: , individual_ids: , name: , pay_frequencies: ) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/finch_api/models/payroll/pay_group_retrieve_response.rb', line 41 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 |