Sha256: f38e4c3da82a758556531ad8c05f98b1d941513a860b96eed0233bb77a754f11

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

=begin
#Svix API

#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: 1.1.1

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

=end

require 'date'
require 'time'

module Svix
  class TransformationHttpMethod
    POST = "POST".freeze
    PUT = "PUT".freeze
    PATCH = "PATCH".freeze

    def self.all_vars
      @all_vars ||= [POST, PUT, PATCH].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 TransformationHttpMethod.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #TransformationHttpMethod"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
svix-1.56.0 lib/svix/models/transformation_http_method.rb
svix-1.45.1 lib/svix/models/transformation_http_method.rb
svix-1.45.0 lib/svix/models/transformation_http_method.rb