< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.Response
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVisualSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\Response.cs
Covered lines:2
Uncovered lines:6
Coverable lines:8
Total lines:63
Line coverage:25% (2 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ReadLink()-0%100%
get_WebSearchUrl()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\Response.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.VisualSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    /// <summary>
 13    /// Defines a response. All schemas that return at the root of the response
 14    /// must inherit from this object.
 15    /// </summary>
 16    public partial class Response : Identifiable
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the Response class.
 20        /// </summary>
 109221        public Response()
 22        {
 23            CustomInit();
 109224        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the Response class.
 28        /// </summary>
 29        /// <param name="id">A String identifier.</param>
 30        /// <param name="readLink">The URL that returns this resource. To use
 31        /// the URL, append query parameters as appropriate and include the
 32        /// Ocp-Apim-Subscription-Key header.</param>
 33        /// <param name="webSearchUrl">The URL to Bing's search result for this
 34        /// item.</param>
 35        public Response(string id = default(string), string readLink = default(string), string webSearchUrl = default(st
 036            : base(id)
 37        {
 038            ReadLink = readLink;
 039            WebSearchUrl = webSearchUrl;
 40            CustomInit();
 041        }
 42
 43        /// <summary>
 44        /// An initialization method that performs custom operations like setting defaults
 45        /// </summary>
 46        partial void CustomInit();
 47
 48        /// <summary>
 49        /// Gets the URL that returns this resource. To use the URL, append
 50        /// query parameters as appropriate and include the
 51        /// Ocp-Apim-Subscription-Key header.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "readLink")]
 054        public string ReadLink { get; private set; }
 55
 56        /// <summary>
 57        /// Gets the URL to Bing's search result for this item.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "webSearchUrl")]
 060        public string WebSearchUrl { get; private set; }
 61
 62    }
 63}