Sha256: 49a12d16938cbb2b5a395e99ade91bdb7cf932feaef3511766bbb31b017f904e
Contents?: true
Size: 1014 Bytes
Versions: 11
Compression:
Stored size: 1014 Bytes
Contents
=begin #MoneyKit API #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) The version of the OpenAPI document: 2023-02-18 Generated by: https://openapi-generator.tech OpenAPI Generator version: 7.1.0 =end require 'date' require 'time' module MoneyKit class TransactionTypeFilter 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 TransactionTypeFilter.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #TransactionTypeFilter" end end end
Version data entries
11 entries across 11 versions & 1 rubygems