Sha256: ef725688ec8d606e513e1eb3f8e9be00d0992c797116032980e34bccd284a1bd
Contents?: true
Size: 1011 Bytes
Versions: 6
Compression:
Stored size: 1011 Bytes
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 COMPLETED = "completed".freeze FAILED = "failed".freeze def self.all_vars @all_vars ||= [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
6 entries across 6 versions & 1 rubygems