Sha256: 41f5c2bd798cf32d7871ae25e1b53e52f356f5169d5822b3931441ccbbf7394a

Contents?: true

Size: 1.08 KB

Versions: 5

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: 2023-02-18

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

=end

require 'date'
require 'time'

module MoneyKit
  class LinkProductState
    PENDING = "pending".freeze
    IN_PROGRESS = "in_progress".freeze
    COMPLETED = "completed".freeze
    FAILED = "failed".freeze

    def self.all_vars
      @all_vars ||= [PENDING, IN_PROGRESS, COMPLETED, FAILED].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 LinkProductState.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #LinkProductState"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
moneykit-0.1.15 lib/moneykit/models/link_product_state.rb
moneykit-0.1.14 lib/moneykit/models/link_product_state.rb
moneykit-0.1.13 lib/moneykit/models/link_product_state.rb
moneykit-0.1.12 lib/moneykit/models/link_product_state.rb
moneykit-0.1.11 lib/moneykit/models/link_product_state.rb