Sha256: 3269cc5a34674f8e41e891cee07f19c424255953b29a0e137e09a37992210a11
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 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 LinkPermissionScope ACCOUNTS = 'accounts'.freeze ACCOUNT_NUMBERS = 'account_numbers'.freeze IDENTITY = 'identity'.freeze TRANSACTIONS = 'transactions'.freeze def self.all_vars @all_vars ||= [ACCOUNTS, ACCOUNT_NUMBERS, IDENTITY, TRANSACTIONS].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 LinkPermissionScope.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #LinkPermissionScope" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moneykit-0.0.5 | lib/moneykit/models/link_permission_scope.rb |