< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageFileCreateBatch
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\ImageFileCreateBatch.cs
Covered lines:8
Uncovered lines:2
Coverable lines:10
Total lines:66
Line coverage:80% (8 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Images()-100%100%
get_TagIds()-100%100%
get_Metadata()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\ImageFileCreateBatch.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    public partial class ImageFileCreateBatch
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the ImageFileCreateBatch class.
 22        /// </summary>
 023        public ImageFileCreateBatch()
 24        {
 25            CustomInit();
 026        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the ImageFileCreateBatch class.
 30        /// </summary>
 31        /// <param name="metadata">The metadata of image. Limited to 50
 32        /// key-value pairs per image. The length of key is limited to 256. The
 33        /// length of value is limited to 512.</param>
 834        public ImageFileCreateBatch(IList<ImageFileCreateEntry> images = default(IList<ImageFileCreateEntry>), IList<Sys
 35        {
 836            Images = images;
 837            TagIds = tagIds;
 838            Metadata = metadata;
 39            CustomInit();
 840        }
 41
 42        /// <summary>
 43        /// An initialization method that performs custom operations like setting defaults
 44        /// </summary>
 45        partial void CustomInit();
 46
 47        /// <summary>
 48        /// </summary>
 49        [JsonProperty(PropertyName = "images")]
 1650        public IList<ImageFileCreateEntry> Images { get; set; }
 51
 52        /// <summary>
 53        /// </summary>
 54        [JsonProperty(PropertyName = "tagIds")]
 1655        public IList<System.Guid> TagIds { get; set; }
 56
 57        /// <summary>
 58        /// Gets or sets the metadata of image. Limited to 50 key-value pairs
 59        /// per image. The length of key is limited to 256. The length of value
 60        /// is limited to 512.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "metadata")]
 1663        public IDictionary<string, string> Metadata { get; set; }
 64
 65    }
 66}