Class: Wallee::SubscriptionSuspensionReason

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

Constant Summary collapse

FAILED_CHARGE =
'FAILED_CHARGE'.freeze
SUBSCRIBER_INITIATED_REFUND =
'SUBSCRIBER_INITIATED_REFUND'.freeze
MANUAL =
'MANUAL'.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



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

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