Sha256: d7390401a36a87b06ee2d81e540a8fd8964c4bbfb5a4ffd03ab5c63f5569479b

Contents?: true

Size: 999 Bytes

Versions: 2

Compression:

Stored size: 999 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: 6.5.0
#

require 'date'
require 'time'

module MoneyKit
  class MoneyKitEnv
    PRODUCTION = 'production'.freeze
    SANDBOX = 'sandbox'.freeze

    def self.all_vars
      @all_vars ||= [PRODUCTION, SANDBOX].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 MoneyKitEnv.all_vars.include?(value)

      raise "Invalid ENUM value #{value} for class #MoneyKitEnv"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
moneykit-0.0.5 lib/moneykit/models/money_kit_env.rb
moneykit-0.0.3 lib/moneykit/models/money_kit_env.rb