Class: AmznSpApi::ProductPricingApiModel::HttpMethod
- Inherits:
-
Object
- Object
- AmznSpApi::ProductPricingApiModel::HttpMethod
- Defined in:
- lib/product_pricing_api_model/models/http_method.rb
Constant Summary collapse
- GET =
'GET'.freeze
- PUT =
'PUT'.freeze
- PATCH =
'PATCH'.freeze
- DELETE =
'DELETE'.freeze
- POST =
'POST'.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
23 24 25 26 27 28 |
# File 'lib/product_pricing_api_model/models/http_method.rb', line 23 def build_from_hash(value) constantValues = HttpMethod.constants.select { |c| HttpMethod.const_get(c) == value } raise "Invalid ENUM value #{value} for class #HttpMethod" if constantValues.empty? value end |