Sha256: 784ac3bccdc31e6c777cd46250036fd790440003ca004ce5e47e71aebb9e23ce

Contents?: true

Size: 881 Bytes

Versions: 2

Compression:

Stored size: 881 Bytes

Contents

require 'date'
require 'time'
module PCPServerSDK
  module Models
    class AllowedPaymentActions
      ORDER_MANAGEMENT = "ORDER_MANAGEMENT".freeze
      PAYMENT_EXECUTION = "PAYMENT_EXECUTION".freeze

      def self.all_vars
        @all_vars ||= [ORDER_MANAGEMENT, PAYMENT_EXECUTION].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 AllowedPaymentActions.all_vars.include?(value)
        raise "Invalid ENUM value #{value} for class #AllowedPaymentActions"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pcp-server-ruby-sdk-1.1.0 lib/PCP-server-Ruby-SDK/models/allowed_payment_actions.rb
pcp-server-ruby-sdk-1.0.0 lib/PCP-server-Ruby-SDK/models/allowed_payment_actions.rb