Class: SwaggerClient::TransactionType

Inherits:
Object
  • Object
show all
Defined in:
lib/swagger_client/models/transaction_type.rb

Constant Summary collapse

SALE =
"SALE".freeze
PREAUTH =
"PREAUTH".freeze
CREDIT =
"CREDIT".freeze
FORCED_TICKET =
"FORCED_TICKET".freeze
VOID =
"VOID".freeze
RETURN =
"RETURN".freeze
POSTAUTH =
"POSTAUTH".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/swagger_client/models/transaction_type.rb', line 29

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