19 lines
438 B
C#
19 lines
438 B
C#
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; }
|
|
|
|
[JsonPropertyName("sequenceNumber")]
|
|
public string SequenceNumber { get; set; }
|
|
|
|
[JsonPropertyName("streamSid")]
|
|
public string StreamSid { get; set; }
|
|
}
|