Files
anthropic-client/src/AnthropicClient/Models/MessageStopEventData.cs
T

15 lines
433 B
C#
Raw Normal View History

2024-06-28 10:54:00 -05:00
namespace AnthropicClient.Models;
2024-06-29 22:20:55 -05:00
/// <summary>
/// Represents data for a message_stop event.
/// </summary>
2024-06-28 10:54:00 -05:00
public class MessageStopEventData : EventData
{
2024-06-29 22:20:55 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="MessageStopEventData"/> class.
/// </summary>
/// <returns>A new instance of the <see cref="MessageStopEventData"/> class.</returns>
2024-06-28 10:54:00 -05:00
public MessageStopEventData() : base(EventType.MessageStop)
{
}
}