Sha256: 4db0837dd27b7032f0d9d0a43e8fc0eb2bdd09745502aef61ceffba32fddb8eb
Contents?: true
Size: 990 Bytes
Versions: 1
Compression:
Stored size: 990 Bytes
Contents
=begin This is an automatically generated file. DO NOT EDIT. Generated from version 2.1.81 of the OpenAPI specification at https://github.com/athenianco/api-spec/releases/tag/2.1.81. Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.4.0 =end require 'date' require 'time' module Athenian class HistogramScale LINEAR = 'linear'.freeze LOG = 'log'.freeze def self.all_vars @all_vars ||= [LINEAR, LOG].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 HistogramScale.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #HistogramScale" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.81 | lib/athenian/models/histogram_scale.rb |