Class: ReliefWebAPI::FilterOperatorPost
- Inherits:
-
Object
- Object
- ReliefWebAPI::FilterOperatorPost
- Defined in:
- lib/reliefweb-api/models/filter_operator_post.rb
Constant Summary collapse
- AND =
'AND'.freeze
- OR =
'OR'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
24 25 26 27 28 |
# File 'lib/reliefweb-api/models/filter_operator_post.rb', line 24 def build_from_hash(value) constantValues = FilterOperatorPost.constants.select { |c| FilterOperatorPost::const_get(c) == value } raise "Invalid ENUM value #{value} for class #FilterOperatorPost" if constantValues.empty? value end |