lib/anthropic/models/beta/beta_input_json_delta.rb



# frozen_string_literal: true

module Anthropic
  module Models
    module Beta
      class BetaInputJSONDelta < 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

        # @!method initialize(partial_json:, type: :input_json_delta)
        #   @param partial_json [String]
        #   @param type [Symbol, :input_json_delta]
      end
    end

    BetaInputJSONDelta = Beta::BetaInputJSONDelta
  end
end