< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.Frames
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Frames.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:55
Line coverage:0% (0 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ReviewId()-0%100%
get_VideoFrames()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Frames.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.ContentModerator.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// The response for a Get Frames request.
 16    /// </summary>
 17    public partial class Frames
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the Frames class.
 21        /// </summary>
 022        public Frames()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the Frames class.
 29        /// </summary>
 30        /// <param name="reviewId">Id of the review.</param>
 031        public Frames(string reviewId = default(string), IList<Frame> videoFrames = default(IList<Frame>))
 32        {
 033            ReviewId = reviewId;
 034            VideoFrames = videoFrames;
 35            CustomInit();
 036        }
 37
 38        /// <summary>
 39        /// An initialization method that performs custom operations like setting defaults
 40        /// </summary>
 41        partial void CustomInit();
 42
 43        /// <summary>
 44        /// Gets or sets id of the review.
 45        /// </summary>
 46        [JsonProperty(PropertyName = "ReviewId")]
 047        public string ReviewId { get; set; }
 48
 49        /// <summary>
 50        /// </summary>
 51        [JsonProperty(PropertyName = "VideoFrames")]
 052        public IList<Frame> VideoFrames { get; set; }
 53
 54    }
 55}