namespace AnthropicClient.Models;
///
/// Represents a message batch result that contains an error response.
///
public class ErroredMessageBatchResult : MessageBatchResult
{
///
/// Gets the error of the message batch result.
///
public AnthropicError Error { get; init; } = new AnthropicError();
///
/// Initializes a new instance of the class.
///
public ErroredMessageBatchResult() : base(MessageBatchResultType.Errored)
{
}
}