Sha256: 3a3377acfc9b112e987349e043622879f9df69af1ec16ccbe49d22d40c6f342a
Contents?: true
Size: 879 Bytes
Versions: 2
Compression:
Stored size: 879 Bytes
Contents
require 'date' require 'time' module PCPServerSDK module Models class UnscheduledCardOnFileSequenceIndicator FIRST = "first".freeze SUBSEQUENT = "subsequent".freeze def self.all_vars @all_vars ||= [FIRST, SUBSEQUENT].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 UnscheduledCardOnFileSequenceIndicator.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #UnscheduledCardOnFileSequenceIndicator" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems