Sha256: 411752d7d25fa52c50765a73c750ebb7ab1be257791fe2b1bc00a29015417da0
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
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 Product ACCOUNTS = "accounts".freeze ACCOUNT_NUMBERS = "account_numbers".freeze IDENTITY = "identity".freeze TRANSACTIONS = "transactions".freeze INVESTMENTS = "investments".freeze def self.all_vars @all_vars ||= [ACCOUNTS, ACCOUNT_NUMBERS, IDENTITY, TRANSACTIONS, INVESTMENTS].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 Product.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Product" end end end
Version data entries
6 entries across 6 versions & 1 rubygems