Sha256: ba11d11bd6a3bbc586e8a592070170d4db6900d7a677c0ec20a5c7d3be546004
Contents?: true
Size: 1011 Bytes
Versions: 1
Compression:
Stored size: 1011 Bytes
Contents
# #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 # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moneykit-0.0.5 | lib/moneykit/models/transaction_type_filter.rb |