class MergeHRISClient::RunTypeEnum
Constants
- CONTRACTOR_LATE_PAYMENTS
- CORRECTION
- CORRECTION_DISPLAY
- EXCESS_HOURS
- FRINGE_BENEFITS
- INIT
- NEW_HIRE
- OFF_CYCLE
- POP
- RECONCILIATION
- REGULAR
- SIGN_ON_BONUS
- S_CORP
- TERMINATION
- TRANSITION
Public Class Methods
build_from_hash(value)
click to toggle source
Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value
# File lib/merge_hris_client/models/run_type_enum.rb, line 37 def self.build_from_hash(value) new.build_from_hash(value) end
Public Instance Methods
build_from_hash(value)
click to toggle source
Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value
# File lib/merge_hris_client/models/run_type_enum.rb, line 44 def build_from_hash(value) constantValues = RunTypeEnum.constants.select { |c| RunTypeEnum::const_get(c) == value } value end