Sha256: 8a357de7ba669b3b6f87edfcacef56ea918568c646da436f4fa73415c066136b

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

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: 6.5.0

=end

require 'date'
require 'time'

module MoneyKit
  class Product
    ACCOUNTS = "accounts".freeze
    ACCOUNT_NUMBERS = "account_numbers".freeze
    IDENTITY = "identity".freeze
    TRANSACTIONS = "transactions".freeze

    def self.all_vars
      @all_vars ||= [ACCOUNTS, ACCOUNT_NUMBERS, IDENTITY, TRANSACTIONS].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

2 entries across 2 versions & 1 rubygems

Version Path
moneykit-0.0.2 lib/moneykit/models/product.rb
moneykit-0.0.1 lib/moneykit/models/product.rb