lib/anthropic/models/beta_gateway_timeout_error.rb (8 lines of code) (raw):
# frozen_string_literal: true
module Anthropic
module Models
class BetaGatewayTimeoutError < Anthropic::Internal::Type::BaseModel
# @!attribute message
#
# @return [String]
required :message, String
# @!attribute type
#
# @return [Symbol, :timeout_error]
required :type, const: :timeout_error
# @!parse
# # @param message [String]
# # @param type [Symbol, :timeout_error]
# #
# def initialize(message:, type: :timeout_error, **) = super
# def initialize: (Hash | Anthropic::Internal::Type::BaseModel) -> void
end
end
end