< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_CacheID()-0%100%
get_Result()-0%100%
get_TrackingId()-0%100%
get_AdultClassificationScore()-0%100%
get_IsImageAdultClassified()-0%100%
get_RacyClassificationScore()-0%100%
get_IsImageRacyClassified()-0%100%
get_AdvancedInfo()-0%100%
get_Status()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Evaluate.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    /// Evaluate response object.
 16    /// </summary>
 17    public partial class Evaluate
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the Evaluate class.
 21        /// </summary>
 022        public Evaluate()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the Evaluate class.
 29        /// </summary>
 30        /// <param name="cacheID">The cache id.</param>
 31        /// <param name="result">Evaluate result.</param>
 32        /// <param name="trackingId">The tracking id.</param>
 33        /// <param name="adultClassificationScore">The adult classification
 34        /// score.</param>
 35        /// <param name="isImageAdultClassified">Indicates if an image is
 36        /// classified as adult.</param>
 37        /// <param name="racyClassificationScore">The racy classification
 38        /// score.</param>
 39        /// <param name="isImageRacyClassified">Indicates if the image is
 40        /// classified as racy.</param>
 41        /// <param name="advancedInfo">The advanced info.</param>
 42        /// <param name="status">The evaluate status</param>
 043        public Evaluate(string cacheID = default(string), bool? result = default(bool?), string trackingId = default(str
 44        {
 045            CacheID = cacheID;
 046            Result = result;
 047            TrackingId = trackingId;
 048            AdultClassificationScore = adultClassificationScore;
 049            IsImageAdultClassified = isImageAdultClassified;
 050            RacyClassificationScore = racyClassificationScore;
 051            IsImageRacyClassified = isImageRacyClassified;
 052            AdvancedInfo = advancedInfo;
 053            Status = status;
 54            CustomInit();
 055        }
 56
 57        /// <summary>
 58        /// An initialization method that performs custom operations like setting defaults
 59        /// </summary>
 60        partial void CustomInit();
 61
 62        /// <summary>
 63        /// Gets or sets the cache id.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "CacheID")]
 066        public string CacheID { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets evaluate result.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "Result")]
 072        public bool? Result { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets the tracking id.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "TrackingId")]
 078        public string TrackingId { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets the adult classification score.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "AdultClassificationScore")]
 084        public double? AdultClassificationScore { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets indicates if an image is classified as adult.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "IsImageAdultClassified")]
 090        public bool? IsImageAdultClassified { get; set; }
 91
 92        /// <summary>
 93        /// Gets or sets the racy classification score.
 94        /// </summary>
 95        [JsonProperty(PropertyName = "RacyClassificationScore")]
 096        public double? RacyClassificationScore { get; set; }
 97
 98        /// <summary>
 99        /// Gets or sets indicates if the image is classified as racy.
 100        /// </summary>
 101        [JsonProperty(PropertyName = "IsImageRacyClassified")]
 0102        public bool? IsImageRacyClassified { get; set; }
 103
 104        /// <summary>
 105        /// Gets or sets the advanced info.
 106        /// </summary>
 107        [JsonProperty(PropertyName = "AdvancedInfo")]
 0108        public IList<KeyValuePair> AdvancedInfo { get; set; }
 109
 110        /// <summary>
 111        /// Gets or sets the evaluate status
 112        /// </summary>
 113        [JsonProperty(PropertyName = "Status")]
 0114        public Status Status { get; set; }
 115
 116    }
 117}