< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VideoSearch.Models.Thing
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVideoSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\Thing.cs
Covered lines:2
Uncovered lines:14
Coverable lines:16
Total lines:88
Line coverage:12.5% (2 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_Url()-0%100%
get_Image()-0%100%
get_Description()-0%100%
get_AlternateName()-0%100%
get_BingId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\Thing.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.Search.VideoSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    public partial class Thing : Response
 13    {
 14        /// <summary>
 15        /// Initializes a new instance of the Thing class.
 16        /// </summary>
 51617        public Thing()
 18        {
 19            CustomInit();
 51620        }
 21
 22        /// <summary>
 23        /// Initializes a new instance of the Thing class.
 24        /// </summary>
 25        /// <param name="id">A String identifier.</param>
 26        /// <param name="webSearchUrl">The URL To Bing's search result for this
 27        /// item.</param>
 28        /// <param name="name">The name of the thing represented by this
 29        /// object.</param>
 30        /// <param name="url">The URL to get more information about the thing
 31        /// represented by this object.</param>
 32        /// <param name="description">A short description of the item.</param>
 33        /// <param name="bingId">An ID that uniquely identifies this
 34        /// item.</param>
 35        public Thing(string id = default(string), string webSearchUrl = default(string), string name = default(string), 
 036            : base(id, webSearchUrl)
 37        {
 038            Name = name;
 039            Url = url;
 040            Image = image;
 041            Description = description;
 042            AlternateName = alternateName;
 043            BingId = bingId;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets the name of the thing represented by this object.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "name")]
 056        public string Name { get; private set; }
 57
 58        /// <summary>
 59        /// Gets the URL to get more information about the thing represented by
 60        /// this object.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "url")]
 063        public string Url { get; private set; }
 64
 65        /// <summary>
 66        /// </summary>
 67        [JsonProperty(PropertyName = "image")]
 068        public ImageObject Image { get; private set; }
 69
 70        /// <summary>
 71        /// Gets a short description of the item.
 72        /// </summary>
 73        [JsonProperty(PropertyName = "description")]
 074        public string Description { get; private set; }
 75
 76        /// <summary>
 77        /// </summary>
 78        [JsonProperty(PropertyName = "alternateName")]
 079        public string AlternateName { get; private set; }
 80
 81        /// <summary>
 82        /// Gets an ID that uniquely identifies this item.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "bingId")]
 085        public string BingId { get; private set; }
 86
 87    }
 88}