lib/anthropic/models/beta/beta_thinking_config_disabled.rb



# frozen_string_literal: true

module Anthropic
  module Models
    module Beta
      class BetaThinkingConfigDisabled < Anthropic::Internal::Type::BaseModel
        # @!attribute type
        #
        #   @return [Symbol, :disabled]
        required :type, const: :disabled

        # @!method initialize(type: :disabled)
        #   @param type [Symbol, :disabled]
      end
    end

    BetaThinkingConfigDisabled = Beta::BetaThinkingConfigDisabled
  end
end