Class: XeroRuby::PayrollUk::StatutoryDeductionCategory

Inherits:
Object
  • Object
show all
Defined in:
lib/xero-ruby/models/payroll_uk/statutory_deduction_category.rb

Constant Summary collapse

ADDITIONAL_STUDENT_LOAN =
"AdditionalStudentLoan".freeze
CHILD_SUPPORT =
"ChildSupport".freeze
COURT_FINES =
"CourtFines".freeze
CREDITOR =
"Creditor".freeze
FEDERAL_LEVY =
"FederalLevy".freeze
INLAND_REVENUE_ARREARS =
"InlandRevenueArrears".freeze
KIWI_SAVER =
"KiwiSaver".freeze
MSD_REPAYMENTS =
"MsdRepayments".freeze
NON_PRIORITY_ORDER =
"NonPriorityOrder".freeze
PRIORITY_ORDER =
"PriorityOrder".freeze
TABLE_BASED =
"TableBased".freeze
STUDENT_LOAN =
"StudentLoan".freeze
VOLUNTARY_STUDENT_LOAN =
"VoluntaryStudentLoan".freeze
US_CHILD_SUPPORT =
"USChildSupport".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



35
36
37
# File 'lib/xero-ruby/models/payroll_uk/statutory_deduction_category.rb', line 35

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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



42
43
44
45
46
# File 'lib/xero-ruby/models/payroll_uk/statutory_deduction_category.rb', line 42

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