< Summary

Class:Microsoft.Azure.CognitiveServices.Search.LocalSearch.Models.Thing
Assembly:Microsoft.Azure.CognitiveServices.Search.BingLocalSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\Models\Thing.cs
Covered lines:0
Uncovered lines:13
Coverable lines:13
Total lines:91
Line coverage:0% (0 of 13)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\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.LocalSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Defines a thing.
 16    /// </summary>
 17    public partial class Thing : Response
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the Thing class.
 21        /// </summary>
 022        public Thing()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the Thing class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="readLink">The URL that returns this resource.</param>
 32        /// <param name="webSearchUrl">The URL to Bing's search result for this
 33        /// item.</param>
 34        /// <param name="name">The name of the thing represented by this
 35        /// object.</param>
 36        /// <param name="url">The URL to get more information about the thing
 37        /// represented by this object.</param>
 38        /// <param name="entityPresentationInfo">Additional information about
 39        /// the entity such as hints that you can use to determine the entity's
 40        /// type. To determine the entity's type, use the entityScenario and
 41        /// entityTypeHint fields.</param>
 42        public Thing(string id = default(string), string readLink = default(string), string webSearchUrl = default(strin
 043            : base(id, readLink, webSearchUrl, potentialAction, immediateAction, preferredClickthroughUrl, adaptiveCard)
 44        {
 045            Name = name;
 046            Url = url;
 047            EntityPresentationInfo = entityPresentationInfo;
 48            CustomInit();
 049        }
 50
 51        /// <summary>
 52        /// An initialization method that performs custom operations like setting defaults
 53        /// </summary>
 54        partial void CustomInit();
 55
 56        /// <summary>
 57        /// Gets the name of the thing represented by this object.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "name")]
 060        public string Name { get; private set; }
 61
 62        /// <summary>
 63        /// Gets the URL to get more information about the thing represented by
 64        /// this object.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "url")]
 067        public string Url { get; private set; }
 68
 69        /// <summary>
 70        /// Gets additional information about the entity such as hints that you
 71        /// can use to determine the entity's type. To determine the entity's
 72        /// type, use the entityScenario and entityTypeHint fields.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "entityPresentationInfo")]
 075        public EntitiesEntityPresentationInfo EntityPresentationInfo { get; private set; }
 76
 77        /// <summary>
 78        /// Validate the object.
 79        /// </summary>
 80        /// <exception cref="Rest.ValidationException">
 81        /// Thrown if validation fails
 82        /// </exception>
 83        public virtual void Validate()
 84        {
 085            if (EntityPresentationInfo != null)
 86            {
 087                EntityPresentationInfo.Validate();
 88            }
 089        }
 90    }
 91}