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- 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_list_response.rb', line 47
|
Instance Method Details
#initialize(id: nil, name: nil, pay_frequencies: nil) ⇒ Object
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 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 |