Sha256: 108080e3bc1db0b90498aff9c7c91c935c1c5061e0c54eb181920d39fb7fae0e
Contents?: true
Size: 976 Bytes
Versions: 11
Compression:
Stored size: 976 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 Country US = "US".freeze GB = "GB".freeze CA = "CA".freeze def self.all_vars @all_vars ||= [US, GB, CA].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 Country.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Country" end end end
Version data entries
11 entries across 11 versions & 1 rubygems