Sha256: 6e8408529d9e42856ed39a5f585e8cd1827e2d450c29999aca9af349d92a6225

Contents?: true

Size: 1.13 KB

Versions: 5

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

Generated by: https://openapi-generator.tech
OpenAPI Generator version: 7.1.0

=end

require 'date'
require 'time'

module MoneyKit
  class LinkState
    CONNECTING = "connecting".freeze
    AWAITING_TOKEN_EXCHANGE = "awaiting_token_exchange".freeze
    CONNECTED = "connected".freeze
    DELETED = "deleted".freeze
    ERROR = "error".freeze

    def self.all_vars
      @all_vars ||= [CONNECTING, AWAITING_TOKEN_EXCHANGE, CONNECTED, DELETED, ERROR].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 LinkState.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #LinkState"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
moneykit-0.1.2 lib/moneykit/models/link_state.rb
moneykit-0.1.1 lib/moneykit/models/link_state.rb
moneykit-0.1.0 lib/moneykit/models/link_state.rb
moneykit-0.1.0.alpha.2 lib/moneykit/models/link_state.rb
moneykit-0.1.0.alpha.1 lib/moneykit/models/link_state.rb