Sha256: 3a7f006fbcaebe686d33d1db6c4e425489f8fdc0e230324251f9169f57685956
Contents?: true
Size: 993 Bytes
Versions: 16
Compression:
Stored size: 993 Bytes
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 OpenAPI Generator version: 5.2.0 =end require 'date' require 'time' module Svix class OauthJwsSigningAlgorithm RS256 = "RS256".freeze # 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) constantValues = OauthJwsSigningAlgorithm.constants.select { |c| OauthJwsSigningAlgorithm::const_get(c) == value } raise "Invalid ENUM value #{value} for class #OauthJwsSigningAlgorithm" if constantValues.empty? value end end end
Version data entries
16 entries across 16 versions & 1 rubygems