< Summary

Class:Microsoft.Azure.EventGrid.Models.MediaLiveEventIncomingStreamReceivedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaLiveEventIncomingStreamReceivedEventData.cs
Covered lines:11
Uncovered lines:11
Coverable lines:22
Total lines:122
Line coverage:50% (11 of 22)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_IngestUrl()-100%100%
get_TrackType()-100%100%
get_TrackName()-100%100%
get_Bitrate()-100%100%
get_EncoderIp()-100%100%
get_EncoderPort()-100%100%
get_Timestamp()-100%100%
get_Duration()-100%100%
get_Timescale()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaLiveEventIncomingStreamReceivedEventData.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Encoder connect event data.
 18    /// </summary>
 19    public partial class MediaLiveEventIncomingStreamReceivedEventData
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// MediaLiveEventIncomingStreamReceivedEventData class.
 24        /// </summary>
 125        public MediaLiveEventIncomingStreamReceivedEventData()
 26        {
 27            CustomInit();
 128        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// MediaLiveEventIncomingStreamReceivedEventData class.
 33        /// </summary>
 34        /// <param name="ingestUrl">Gets the ingest URL provided by the live
 35        /// event.</param>
 36        /// <param name="trackType">Gets the type of the track (Audio /
 37        /// Video).</param>
 38        /// <param name="trackName">Gets the track name.</param>
 39        /// <param name="bitrate">Gets the bitrate of the track.</param>
 40        /// <param name="encoderIp">Gets the remote IP.</param>
 41        /// <param name="encoderPort">Gets the remote port.</param>
 42        /// <param name="timestamp">Gets the first timestamp of the data chunk
 43        /// received.</param>
 44        /// <param name="duration">Gets the duration of the first data
 45        /// chunk.</param>
 46        /// <param name="timescale">Gets the timescale in which timestamp is
 47        /// represented.</param>
 048        public MediaLiveEventIncomingStreamReceivedEventData(string ingestUrl = default(string), string trackType = defa
 49        {
 050            IngestUrl = ingestUrl;
 051            TrackType = trackType;
 052            TrackName = trackName;
 053            Bitrate = bitrate;
 054            EncoderIp = encoderIp;
 055            EncoderPort = encoderPort;
 056            Timestamp = timestamp;
 057            Duration = duration;
 058            Timescale = timescale;
 59            CustomInit();
 060        }
 61
 62        /// <summary>
 63        /// An initialization method that performs custom operations like setting defaults
 64        /// </summary>
 65        partial void CustomInit();
 66
 67        /// <summary>
 68        /// Gets the ingest URL provided by the live event.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "ingestUrl")]
 271        public string IngestUrl { get; private set; }
 72
 73        /// <summary>
 74        /// Gets the type of the track (Audio / Video).
 75        /// </summary>
 76        [JsonProperty(PropertyName = "trackType")]
 277        public string TrackType { get; private set; }
 78
 79        /// <summary>
 80        /// Gets the track name.
 81        /// </summary>
 82        [JsonProperty(PropertyName = "trackName")]
 283        public string TrackName { get; private set; }
 84
 85        /// <summary>
 86        /// Gets the bitrate of the track.
 87        /// </summary>
 88        [JsonProperty(PropertyName = "bitrate")]
 289        public long? Bitrate { get; private set; }
 90
 91        /// <summary>
 92        /// Gets the remote IP.
 93        /// </summary>
 94        [JsonProperty(PropertyName = "encoderIp")]
 295        public string EncoderIp { get; private set; }
 96
 97        /// <summary>
 98        /// Gets the remote port.
 99        /// </summary>
 100        [JsonProperty(PropertyName = "encoderPort")]
 2101        public string EncoderPort { get; private set; }
 102
 103        /// <summary>
 104        /// Gets the first timestamp of the data chunk received.
 105        /// </summary>
 106        [JsonProperty(PropertyName = "timestamp")]
 2107        public string Timestamp { get; private set; }
 108
 109        /// <summary>
 110        /// Gets the duration of the first data chunk.
 111        /// </summary>
 112        [JsonProperty(PropertyName = "duration")]
 2113        public string Duration { get; private set; }
 114
 115        /// <summary>
 116        /// Gets the timescale in which timestamp is represented.
 117        /// </summary>
 118        [JsonProperty(PropertyName = "timescale")]
 2119        public string Timescale { get; private set; }
 120
 121    }
 122}