Sha256: 17e0ae2c9f6c19670f5cb23dde1256d760f985eb8d5d3bd2f7e0d762b1f1ad71
Contents?: true
Size: 991 Bytes
Versions: 5
Compression:
Stored size: 991 Bytes
Contents
=begin #MoneyKit API #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) The version of the OpenAPI document: 0.1.0 Generated by: https://openapi-generator.tech OpenAPI Generator version: 7.1.0 =end require 'date' require 'time' module MoneyKit class TransactionType CREDIT = "credit".freeze DEBIT = "debit".freeze def self.all_vars @all_vars ||= [CREDIT, DEBIT].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) return value if TransactionType.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #TransactionType" end end end
Version data entries
5 entries across 5 versions & 1 rubygems