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- SEMI_ANNUALLY =
:semi_annually- QUARTERLY =
:quarterly- MONTHLY =
:monthly- SEMI_MONTHLY =
:semi_monthly- BI_WEEKLY =
:bi_weekly- WEEKLY =
:weekly- DAILY =
:daily- OTHER =
:other
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, 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 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 |