< Summary

Class:Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.Thing
Assembly:Microsoft.Azure.CognitiveServices.Search.BingCustomImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomImageSearch\src\Generated\CustomImageSearch\Models\Thing.cs
Covered lines:2
Uncovered lines:14
Coverable lines:16
Total lines:96
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.BingCustomImageSearch\src\Generated\CustomImageSearch\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.CustomImageSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    /// <summary>
 13    /// Defines a thing.
 14    /// </summary>
 15    public partial class Thing : Response
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Thing class.
 19        /// </summary>
 14020        public Thing()
 21        {
 22            CustomInit();
 14023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Thing class.
 27        /// </summary>
 28        /// <param name="id">A String identifier.</param>
 29        /// <param name="readLink">The URL that returns this resource.</param>
 30        /// <param name="webSearchUrl">The URL To Bing's search result for this
 31        /// item.</param>
 32        /// <param name="name">The name of the thing represented by this
 33        /// object.</param>
 34        /// <param name="url">The URL to get more information about the thing
 35        /// represented by this object.</param>
 36        /// <param name="image">An image of the item.</param>
 37        /// <param name="description">A short description of the item.</param>
 38        /// <param name="alternateName">An alias for the item</param>
 39        /// <param name="bingId">An ID that uniquely identifies this
 40        /// item.</param>
 41        public Thing(string id = default(string), string readLink = default(string), string webSearchUrl = default(strin
 042            : base(id, readLink, webSearchUrl)
 43        {
 044            Name = name;
 045            Url = url;
 046            Image = image;
 047            Description = description;
 048            AlternateName = alternateName;
 049            BingId = bingId;
 50            CustomInit();
 051        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58        /// <summary>
 59        /// Gets the name of the thing represented by this object.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "name")]
 062        public string Name { get; private set; }
 63
 64        /// <summary>
 65        /// Gets the URL to get more information about the thing represented by
 66        /// this object.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "url")]
 069        public string Url { get; private set; }
 70
 71        /// <summary>
 72        /// Gets an image of the item.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "image")]
 075        public ImageObject Image { get; private set; }
 76
 77        /// <summary>
 78        /// Gets a short description of the item.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "description")]
 081        public string Description { get; private set; }
 82
 83        /// <summary>
 84        /// Gets an alias for the item
 85        /// </summary>
 86        [JsonProperty(PropertyName = "alternateName")]
 087        public string AlternateName { get; private set; }
 88
 89        /// <summary>
 90        /// Gets an ID that uniquely identifies this item.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "bingId")]
 093        public string BingId { get; private set; }
 94
 95    }
 96}