Class: WhiteLabelMachineName::ProductMeteredTierPricing
- Inherits:
-
Object
- Object
- WhiteLabelMachineName::ProductMeteredTierPricing
- Defined in:
- lib/whitelabelmachinename-ruby-sdk/models/product_metered_tier_pricing.rb
Constant Summary collapse
- CHEAPEST_TIER_PRICING =
'CHEAPEST_TIER_PRICING'.freeze
- INCREMENTAL_DISCOUNT_PRICING =
'INCREMENTAL_DISCOUNT_PRICING'.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
29 30 31 32 33 |
# File 'lib/whitelabelmachinename-ruby-sdk/models/product_metered_tier_pricing.rb', line 29 def build_from_hash(value) constantValues = ProductMeteredTierPricing.constants.select { |c| ProductMeteredTierPricing::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ProductMeteredTierPricing" if constantValues.empty? value end |