Class: XeroRuby::PayrollNz::StatutoryDeductionCategory
- Inherits:
-
Object
- Object
- XeroRuby::PayrollNz::StatutoryDeductionCategory
- Defined in:
- lib/xero-ruby/models/payroll_nz/statutory_deduction_category.rb
Constant Summary collapse
- PRIORITY_ORDER =
"PriorityOrder".freeze
- NON_PRIORITY_ORDER =
"NonPriorityOrder".freeze
- TABLE_BASED =
"TableBased".freeze
- CHILD_SUPPORT =
"ChildSupport".freeze
- COURT_FINES =
"CourtFines".freeze
- INLAND_REVENUE_ARREARS =
"InlandRevenueArrears".freeze
- MSD_REPAYMENTS =
"MsdRepayments".freeze
- STUDENT_LOAN =
"StudentLoan".freeze
- ADDITIONAL_STUDENT_LOAN =
"AdditionalStudentLoan".freeze
- VOLUNTARY_STUDENT_LOAN =
"VoluntaryStudentLoan".freeze
- KIWI_SAVER =
"KiwiSaver".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
32 33 34 |
# File 'lib/xero-ruby/models/payroll_nz/statutory_deduction_category.rb', line 32 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
39 40 41 42 43 |
# File 'lib/xero-ruby/models/payroll_nz/statutory_deduction_category.rb', line 39 def build_from_hash(value) constantValues = StatutoryDeductionCategory.constants.select { |c| StatutoryDeductionCategory::const_get(c) == value } raise "Invalid ENUM value #{value} for class #StatutoryDeductionCategory" if constantValues.empty? value end |