Sha256: b4383cdf51ddcba89de694e12d9ffde4dfcf9ffbaf0ca23fdcc099d51f193c7e
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 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 PublicLinkError SYSTEM_ERROR = 'system_error'.freeze PROVIDER_ERROR = 'provider_error'.freeze INSTITUTION_ERROR = 'institution_error'.freeze USER_ERROR = 'user_error'.freeze AUTH_EXPIRED = 'auth_expired'.freeze INCOMPLETE = 'incomplete'.freeze def self.all_vars @all_vars ||= [SYSTEM_ERROR, PROVIDER_ERROR, INSTITUTION_ERROR, USER_ERROR, AUTH_EXPIRED, INCOMPLETE].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 PublicLinkError.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #PublicLinkError" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moneykit-0.0.5 | lib/moneykit/models/public_link_error.rb |