Sha256: cba91d6b329d433d87b374233b0971c6d45f4befa9aab44d0e0d3613a40abef6
Contents?: true
Size: 1014 Bytes
Versions: 1
Compression:
Stored size: 1014 Bytes
Contents
require 'date' require 'time' module PCPServerSDK module Models class StatusCheckout OPEN = "OPEN".freeze PENDING_COMPLETION = "PENDING_COMPLETION".freeze COMPLETED = "COMPLETED".freeze BILLED = "BILLED".freeze CHARGEBACKED = "CHARGEBACKED".freeze DELETED = "DELETED".freeze def self.all_vars @all_vars ||= [OPEN, PENDING_COMPLETION, COMPLETED, BILLED, CHARGEBACKED, DELETED].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 StatusCheckout.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #StatusCheckout" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pcp-server-ruby-sdk-1.0.0 | lib/PCP-server-Ruby-SDK/models/status_checkout.rb |