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