Sha256: e2cc518e6a4040826832e4209c9136a8031e209ecbb869af166380973cdc3b45

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

require 'date'
require 'time'
module PCPServerSDK
  module Models
    class CancellationReason
      CONSUMER_REQUEST = "CONSUMER_REQUEST".freeze
      UNDELIVERABLE = "UNDELIVERABLE".freeze
      DUPLICATE = "DUPLICATE".freeze
      FRAUDULENT = "FRAUDULENT".freeze
      ORDER_SHIPPED_IN_FULL = "ORDER_SHIPPED_IN_FULL".freeze
      AUTOMATED_SHIPMENT_FAILED = "AUTOMATED_SHIPMENT_FAILED".freeze

      def self.all_vars
        @all_vars ||= [CONSUMER_REQUEST, UNDELIVERABLE, DUPLICATE, FRAUDULENT, ORDER_SHIPPED_IN_FULL, AUTOMATED_SHIPMENT_FAILED].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 CancellationReason.all_vars.include?(value)
        raise "Invalid ENUM value #{value} for class #CancellationReason"
      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/cancellation_reason.rb
pcp-server-ruby-sdk-1.0.0 lib/PCP-server-Ruby-SDK/models/cancellation_reason.rb