< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Thing
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\Thing.cs
Covered lines:2
Uncovered lines:12
Coverable lines:14
Total lines:82
Line coverage:14.2% (2 of 14)
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_BingId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\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.WebSearch.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>
 15617        public Thing()
 18        {
 19            CustomInit();
 15620        }
 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            BingId = bingId;
 43            CustomInit();
 044        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets the name of the thing represented by this object.
 53        /// </summary>
 54        [JsonProperty(PropertyName = "name")]
 055        public string Name { get; private set; }
 56
 57        /// <summary>
 58        /// Gets the URL to get more information about the thing represented by
 59        /// this object.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "url")]
 062        public string Url { get; private set; }
 63
 64        /// <summary>
 65        /// </summary>
 66        [JsonProperty(PropertyName = "image")]
 067        public ImageObject Image { get; private set; }
 68
 69        /// <summary>
 70        /// Gets a short description of the item.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "description")]
 073        public string Description { get; private set; }
 74
 75        /// <summary>
 76        /// Gets an ID that uniquely identifies this item.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "bingId")]
 079        public string BingId { get; private set; }
 80
 81    }
 82}