< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.StoredImagePrediction
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\StoredImagePrediction.cs
Covered lines:9
Uncovered lines:13
Coverable lines:22
Total lines:133
Line coverage:40.9% (9 of 22)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ResizedImageUri()-100%100%
get_ThumbnailUri()-100%100%
get_OriginalImageUri()-100%100%
get_Domain()-0%100%
get_Id()-100%100%
get_Project()-100%100%
get_Iteration()-100%100%
get_Created()-0%100%
get_Predictions()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\StoredImagePrediction.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.CognitiveServices.Vision.CustomVision.Training.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Result of an image prediction request.
 20    /// </summary>
 21    public partial class StoredImagePrediction
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the StoredImagePrediction class.
 25        /// </summary>
 426        public StoredImagePrediction()
 27        {
 28            CustomInit();
 429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the StoredImagePrediction class.
 33        /// </summary>
 34        /// <param name="resizedImageUri">The URI to the (resized) prediction
 35        /// image. If VNET feature is enabled this will be a relative path to
 36        /// be used with GetArtifact, otherwise this will be an absolute URI to
 37        /// the resource.</param>
 38        /// <param name="thumbnailUri">The URI to the thumbnail of the original
 39        /// prediction image. If VNET feature is enabled this will be a
 40        /// relative path to be used with GetArtifact, otherwise this will be
 41        /// an absolute URI to the resource.</param>
 42        /// <param name="originalImageUri">The URI to the original prediction
 43        /// image. If VNET feature is enabled this will be a relative path to
 44        /// be used with GetArtifact, otherwise this will be an absolute URI to
 45        /// the resource.</param>
 46        /// <param name="domain">Domain used for the prediction.</param>
 47        /// <param name="id">Prediction Id.</param>
 48        /// <param name="project">Project Id.</param>
 49        /// <param name="iteration">Iteration Id.</param>
 50        /// <param name="created">Date this prediction was created.</param>
 51        /// <param name="predictions">List of predictions.</param>
 052        public StoredImagePrediction(string resizedImageUri = default(string), string thumbnailUri = default(string), st
 53        {
 054            ResizedImageUri = resizedImageUri;
 055            ThumbnailUri = thumbnailUri;
 056            OriginalImageUri = originalImageUri;
 057            Domain = domain;
 058            Id = id;
 059            Project = project;
 060            Iteration = iteration;
 061            Created = created;
 062            Predictions = predictions;
 63            CustomInit();
 064        }
 65
 66        /// <summary>
 67        /// An initialization method that performs custom operations like setting defaults
 68        /// </summary>
 69        partial void CustomInit();
 70
 71        /// <summary>
 72        /// Gets the URI to the (resized) prediction image. If VNET feature is
 73        /// enabled this will be a relative path to be used with GetArtifact,
 74        /// otherwise this will be an absolute URI to the resource.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "resizedImageUri")]
 677        public string ResizedImageUri { get; private set; }
 78
 79        /// <summary>
 80        /// Gets the URI to the thumbnail of the original prediction image. If
 81        /// VNET feature is enabled this will be a relative path to be used
 82        /// with GetArtifact, otherwise this will be an absolute URI to the
 83        /// resource.
 84        /// </summary>
 85        [JsonProperty(PropertyName = "thumbnailUri")]
 686        public string ThumbnailUri { get; private set; }
 87
 88        /// <summary>
 89        /// Gets the URI to the original prediction image. If VNET feature is
 90        /// enabled this will be a relative path to be used with GetArtifact,
 91        /// otherwise this will be an absolute URI to the resource.
 92        /// </summary>
 93        [JsonProperty(PropertyName = "originalImageUri")]
 694        public string OriginalImageUri { get; private set; }
 95
 96        /// <summary>
 97        /// Gets domain used for the prediction.
 98        /// </summary>
 99        [JsonProperty(PropertyName = "domain")]
 0100        public System.Guid Domain { get; private set; }
 101
 102        /// <summary>
 103        /// Gets prediction Id.
 104        /// </summary>
 105        [JsonProperty(PropertyName = "id")]
 8106        public System.Guid Id { get; private set; }
 107
 108        /// <summary>
 109        /// Gets project Id.
 110        /// </summary>
 111        [JsonProperty(PropertyName = "project")]
 6112        public System.Guid Project { get; private set; }
 113
 114        /// <summary>
 115        /// Gets iteration Id.
 116        /// </summary>
 117        [JsonProperty(PropertyName = "iteration")]
 6118        public System.Guid Iteration { get; private set; }
 119
 120        /// <summary>
 121        /// Gets date this prediction was created.
 122        /// </summary>
 123        [JsonProperty(PropertyName = "created")]
 0124        public System.DateTime Created { get; private set; }
 125
 126        /// <summary>
 127        /// Gets list of predictions.
 128        /// </summary>
 129        [JsonProperty(PropertyName = "predictions")]
 10130        public IList<Prediction> Predictions { get; private set; }
 131
 132    }
 133}