| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> Ingest fragment dropped event data. </summary> |
| | 11 | | public partial class MediaLiveEventIncomingDataChunkDroppedEventData |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of MediaLiveEventIncomingDataChunkDroppedEventData. </summary> |
| 0 | 14 | | internal MediaLiveEventIncomingDataChunkDroppedEventData() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of MediaLiveEventIncomingDataChunkDroppedEventData. </summary> |
| | 19 | | /// <param name="timestamp"> Gets the timestamp of the data chunk dropped. </param> |
| | 20 | | /// <param name="trackType"> Gets the type of the track (Audio / Video). </param> |
| | 21 | | /// <param name="bitrate"> Gets the bitrate of the track. </param> |
| | 22 | | /// <param name="timescale"> Gets the timescale of the Timestamp. </param> |
| | 23 | | /// <param name="resultCode"> Gets the result code for fragment drop operation. </param> |
| | 24 | | /// <param name="trackName"> Gets the name of the track for which fragment is dropped. </param> |
| 2 | 25 | | internal MediaLiveEventIncomingDataChunkDroppedEventData(string timestamp, string trackType, long? bitrate, stri |
| | 26 | | { |
| 2 | 27 | | Timestamp = timestamp; |
| 2 | 28 | | TrackType = trackType; |
| 2 | 29 | | Bitrate = bitrate; |
| 2 | 30 | | Timescale = timescale; |
| 2 | 31 | | ResultCode = resultCode; |
| 2 | 32 | | TrackName = trackName; |
| 2 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <summary> Gets the timestamp of the data chunk dropped. </summary> |
| 2 | 36 | | public string Timestamp { get; } |
| | 37 | | /// <summary> Gets the type of the track (Audio / Video). </summary> |
| 2 | 38 | | public string TrackType { get; } |
| | 39 | | /// <summary> Gets the bitrate of the track. </summary> |
| 2 | 40 | | public long? Bitrate { get; } |
| | 41 | | /// <summary> Gets the timescale of the Timestamp. </summary> |
| 2 | 42 | | public string Timescale { get; } |
| | 43 | | /// <summary> Gets the result code for fragment drop operation. </summary> |
| 2 | 44 | | public string ResultCode { get; } |
| | 45 | | /// <summary> Gets the name of the track for which fragment is dropped. </summary> |
| 2 | 46 | | public string TrackName { get; } |
| | 47 | | } |
| | 48 | | } |