< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_JobTitle()-0%100%
get_TwitterProfile()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\Person.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 person.
 14    /// </summary>
 15    public partial class Person : Thing
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Person class.
 19        /// </summary>
 020        public Person()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Person class.
 27        /// </summary>
 28        /// <param name="id">A String identifier.</param>
 29        /// <param name="readLink">The URL that returns this resource. To use
 30        /// the URL, append query parameters as appropriate and include the
 31        /// Ocp-Apim-Subscription-Key header.</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="image">An image of the item.</param>
 39        /// <param name="description">A short description of the item.</param>
 40        /// <param name="alternateName">An alias for the item.</param>
 41        /// <param name="bingId">An ID that uniquely identifies this
 42        /// item.</param>
 43        /// <param name="jobTitle">The person's job title.</param>
 44        /// <param name="twitterProfile">The URL of the person's twitter
 45        /// profile.</param>
 46        public Person(string id = default(string), string readLink = default(string), string webSearchUrl = default(stri
 047            : base(id, readLink, webSearchUrl, name, url, image, description, alternateName, bingId)
 48        {
 049            JobTitle = jobTitle;
 050            TwitterProfile = twitterProfile;
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets the person's job title.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "jobTitle")]
 063        public string JobTitle { get; private set; }
 64
 65        /// <summary>
 66        /// Gets the URL of the person's twitter profile.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "twitterProfile")]
 069        public string TwitterProfile { get; private set; }
 70
 71    }
 72}