BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/Stream/StreamEventResponse.cs

19 lines
438 B
C#
Raw Normal View History

2025-02-07 17:18:47 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.Twilio.Models.Stream;
public class StreamEventResponse
{
/// <summary>
/// connected, start, media, stop
/// </summary>
[JsonPropertyName("event")]
public string Event { get; set; }
2025-02-07 22:40:57 +00:00
[JsonPropertyName("sequenceNumber")]
public string SequenceNumber { get; set; }
[JsonPropertyName("streamSid")]
public string StreamSid { get; set; }
2025-02-07 17:18:47 +00:00
}