Sha256: c5dc47005f9fd3248fd169f65d7a686e7a48fe0166e3a1b1a22f14516c985479

Contents?: true

Size: 787 Bytes

Versions: 2

Compression:

Stored size: 787 Bytes

Contents

require 'date'
require 'time'


module PCPServerSDK
  module Models
    class DeliverType
      FULL = "FULL".freeze
      PARTIAL = "PARTIAL".freeze

      def self.all_vars
        @all_vars ||= [FULL, PARTIAL].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 DeliverType.all_vars.include?(value)
        raise "Invalid ENUM value #{value} for class #DeliverType"
      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/deliver_type.rb
pcp-server-ruby-sdk-1.0.0 lib/PCP-server-Ruby-SDK/models/deliver_type.rb