< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.Thing
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\Thing.cs
Covered lines:3
Uncovered lines:18
Coverable lines:21
Total lines:116
Line coverage:14.2% (3 of 21)
Covered branches:0
Total branches:4
Branch coverage:0% (0 of 4)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\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.EntitySearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    public partial class Thing : Response
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the Thing class.
 18        /// </summary>
 819        public Thing()
 20        {
 21            CustomInit();
 822        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the Thing class.
 26        /// </summary>
 27        /// <param name="id">A String identifier.</param>
 28        /// <param name="contractualRules">A list of rules that you must adhere
 29        /// to if you display the item.</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="description">A short description of the item.</param>
 37        /// <param name="entityPresentationInfo">Additional information about
 38        /// the entity such as hints that you can use to determine the entity's
 39        /// type. To determine the entity's type, use the entityScenario and
 40        /// entityTypeHint fields.</param>
 41        /// <param name="bingId">An ID that uniquely identifies this
 42        /// item.</param>
 43        public Thing(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = default(ILis
 044            : base(id, contractualRules, webSearchUrl)
 45        {
 046            Name = name;
 047            Url = url;
 048            Image = image;
 049            Description = description;
 050            EntityPresentationInfo = entityPresentationInfo;
 051            BingId = bingId;
 52            CustomInit();
 053        }
 54
 55        /// <summary>
 56        /// An initialization method that performs custom operations like setting defaults
 57        /// </summary>
 58        partial void CustomInit();
 59
 60        /// <summary>
 61        /// Gets the name of the thing represented by this object.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "name")]
 064        public string Name { get; private set; }
 65
 66        /// <summary>
 67        /// Gets the URL to get more information about the thing represented by
 68        /// this object.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "url")]
 071        public string Url { get; private set; }
 72
 73        /// <summary>
 74        /// </summary>
 75        [JsonProperty(PropertyName = "image")]
 476        public ImageObject Image { get; private set; }
 77
 78        /// <summary>
 79        /// Gets a short description of the item.
 80        /// </summary>
 81        [JsonProperty(PropertyName = "description")]
 082        public string Description { get; private set; }
 83
 84        /// <summary>
 85        /// Gets additional information about the entity such as hints that you
 86        /// can use to determine the entity's type. To determine the entity's
 87        /// type, use the entityScenario and entityTypeHint fields.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "entityPresentationInfo")]
 090        public EntitiesEntityPresentationInfo EntityPresentationInfo { get; private set; }
 91
 92        /// <summary>
 93        /// Gets an ID that uniquely identifies this item.
 94        /// </summary>
 95        [JsonProperty(PropertyName = "bingId")]
 096        public string BingId { get; private set; }
 97
 98        /// <summary>
 99        /// Validate the object.
 100        /// </summary>
 101        /// <exception cref="Rest.ValidationException">
 102        /// Thrown if validation fails
 103        /// </exception>
 104        public virtual void Validate()
 105        {
 0106            if (Image != null)
 107            {
 0108                Image.Validate();
 109            }
 0110            if (EntityPresentationInfo != null)
 111            {
 0112                EntityPresentationInfo.Validate();
 113            }
 0114        }
 115    }
 116}