File: Realtime\RealtimeServerMessage.cs
Project: ..\..\..\src\Libraries\Microsoft.Extensions.AI.Abstractions\Microsoft.Extensions.AI.Abstractions.csproj (Microsoft.Extensions.AI.Abstractions)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Diagnostics.CodeAnalysis;
using Microsoft.Shared.DiagnosticIds;
 
namespace Microsoft.Extensions.AI;
 
/// <summary>
/// Represents a real-time server response message.
/// </summary>
[Experimental(DiagnosticIds.Experiments.AIRealTime, UrlFormat = DiagnosticIds.UrlFormat)]
public class RealtimeServerMessage
{
    /// <summary>
    /// Gets or sets the type of the real-time response.
    /// </summary>
    public RealtimeServerMessageType Type { get; set; }
 
    /// <summary>
    /// Gets or sets the optional message ID associated with the response.
    /// </summary>
    /// <remarks>
    /// This can be used for tracking and correlation purposes.
    /// </remarks>
    public string? MessageId { get; set; }
 
    /// <summary>
    /// Gets or sets the raw representation of the response.
    /// This can be used to hold the original data structure received from the model.
    /// </summary>
    /// <remarks>
    /// The raw representation is typically used for custom or unsupported message types.
    /// For example, the model may accept a JSON serialized server message.
    /// </remarks>
    public object? RawRepresentation { get; set; }
}