class Wallee::DebtCollectionCaseState
Constants
- CLOSED
- CREATE
- FAILED
- PENDING
- PREPARING
- PROCESSING
- REVIEWING
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/wallee-ruby-sdk/models/debt_collection_case_state.rb, line 34 def build_from_hash(value) constantValues = DebtCollectionCaseState.constants.select { |c| DebtCollectionCaseState::const_get(c) == value } raise "Invalid ENUM value #{value} for class #DebtCollectionCaseState" if constantValues.empty? value end