Sha256: d295d2a1ef0f1a28d7525c1045b9862d2364479c03307583d7496679255a6579

Contents?: true

Size: 1.35 KB

Versions: 2

Compression:

Stored size: 1.35 KB

Contents

=begin
#Commerce Platform API

#RESTful API for the creation of Commerce Cases with Checkouts and the execution of Payments. 

The version of the OpenAPI document: 1.8.0

Generated by: https://openapi-generator.tech
Generator version: 7.7.0

=end

require 'date'
require 'time'

module PCPServerSDK
  class StatusCategoryValue
    CREATED = "CREATED".freeze
    UNSUCCESSFUL = "UNSUCCESSFUL".freeze
    PENDING_PAYMENT = "PENDING_PAYMENT".freeze
    PENDING_MERCHANT = "PENDING_MERCHANT".freeze
    PENDING_CONNECT_OR_3_RD_PARTY = "PENDING_CONNECT_OR_3RD_PARTY".freeze
    COMPLETED = "COMPLETED".freeze
    REVERSED = "REVERSED".freeze
    REFUNDED = "REFUNDED".freeze

    def self.all_vars
      @all_vars ||= [CREATED, UNSUCCESSFUL, PENDING_PAYMENT, PENDING_MERCHANT, PENDING_CONNECT_OR_3_RD_PARTY, COMPLETED, REVERSED, REFUNDED].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 StatusCategoryValue.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #StatusCategoryValue"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pcp-server-ruby-sdk-0.0.6 lib/PCP-server-Ruby-SDK/models/status_category_value.rb
pcp-server-ruby-sdk-0.1.0 lib/PCP-server-Ruby-SDK/models/status_category_value.rb