Sha256: a0a15898436cff379a3bf524bc20cb54ab6fe775bb32a6654111ed179e1e8b22

Contents?: true

Size: 968 Bytes

Versions: 2

Compression:

Stored size: 968 Bytes

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 ReturnType
    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 ReturnType.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #ReturnType"
    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/return_type.rb
pcp-server-ruby-sdk-0.1.0 lib/PCP-server-Ruby-SDK/models/return_type.rb