Sha256: 1b4c5f61c3f2f2da23e00374b6ebd2b27505003c356feac355b946af76f0500e
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# #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 # require 'date' require 'time' module MoneyKit class PhoneNumberType HOME = 'home'.freeze WORK = 'work'.freeze MOBILE = 'mobile'.freeze OTHER = 'other'.freeze def self.all_vars @all_vars ||= [HOME, WORK, MOBILE, OTHER].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 PhoneNumberType.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #PhoneNumberType" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moneykit-0.0.5 | lib/moneykit/models/phone_number_type.rb |