Sha256: 6f3b9f85f753f46dea7068292a6152381bfa4bdeed9d1067638e31f7aecf104e

Contents?: true

Size: 889 Bytes

Versions: 15

Compression:

Stored size: 889 Bytes

Contents

=begin
#Carbon

#Connect external data to LLMs, no matter the source.

The version of the OpenAPI document: 1.0.0
=end

require 'date'
require 'time'

module Carbon
  class PROrderBy
    CREATED = "created".freeze
    UPDATED = "updated".freeze
    POPULARITY = "popularity".freeze

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
carbon_ruby_sdk-0.2.53 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.52 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.51 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.50 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.49 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.48 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.47 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.46 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.45 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.44 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.43 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.42 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.41 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.40 lib/carbon_ruby_sdk/models/pr_order_by.rb
carbon_ruby_sdk-0.2.39 lib/carbon_ruby_sdk/models/pr_order_by.rb