Sha256: b1ccae55d2e30528d6c96e8ce8cb111d173a71e44f8750f862c540fb5cac6723

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 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 LinkProductFailureReasons
    RATE_LIMIT = "rate_limit".freeze
    AUTH_EXPIRED = "auth_expired".freeze
    INVALID_CREDENTIALS = "invalid_credentials".freeze
    NOT_SUPPORTED = "not_supported".freeze
    TIMEOUT = "timeout".freeze
    UNKNOWN = "unknown".freeze
    NO_ACCOUNTS = "no_accounts".freeze

    def self.all_vars
      @all_vars ||= [RATE_LIMIT, AUTH_EXPIRED, INVALID_CREDENTIALS, NOT_SUPPORTED, TIMEOUT, UNKNOWN, NO_ACCOUNTS].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 LinkProductFailureReasons.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #LinkProductFailureReasons"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
moneykit-0.1.6 lib/moneykit/models/link_product_failure_reasons.rb
moneykit-0.1.5 lib/moneykit/models/link_product_failure_reasons.rb