Class: Wallee::ShopifySubscriptionVersionItemPriceStrategy

Inherits:
Object
  • Object
show all
Defined in:
lib/wallee-ruby-sdk/models/shopify_subscription_version_item_price_strategy.rb

Constant Summary collapse

INITIALLY_CALCULATED =
'INITIALLY_CALCULATED'.freeze
RECALCULATE =
'RECALCULATE'.freeze

Instance Method Summary collapse

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



29
30
31
32
33
# File 'lib/wallee-ruby-sdk/models/shopify_subscription_version_item_price_strategy.rb', line 29

def build_from_hash(value)
  constantValues = ShopifySubscriptionVersionItemPriceStrategy.constants.select { |c| ShopifySubscriptionVersionItemPriceStrategy::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #ShopifySubscriptionVersionItemPriceStrategy" if constantValues.empty?
  value
end