< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.Place
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\Place.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:90
Line coverage:0% (0 of 12)
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_Address()-0%100%
get_Telephone()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\Place.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    /// <summary>
 15    /// Defines information about a local entity, such as a restaurant or
 16    /// hotel.
 17    /// </summary>
 18    public partial class Place : Thing
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the Place class.
 22        /// </summary>
 023        public Place()
 24        {
 25            CustomInit();
 026        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the Place class.
 30        /// </summary>
 31        /// <param name="id">A String identifier.</param>
 32        /// <param name="contractualRules">A list of rules that you must adhere
 33        /// to if you display the item.</param>
 34        /// <param name="webSearchUrl">The URL To Bing's search result for this
 35        /// item.</param>
 36        /// <param name="name">The name of the thing represented by this
 37        /// object.</param>
 38        /// <param name="url">The URL to get more information about the thing
 39        /// represented by this object.</param>
 40        /// <param name="description">A short description of the item.</param>
 41        /// <param name="entityPresentationInfo">Additional information about
 42        /// the entity such as hints that you can use to determine the entity's
 43        /// type. To determine the entity's type, use the entityScenario and
 44        /// entityTypeHint fields.</param>
 45        /// <param name="bingId">An ID that uniquely identifies this
 46        /// item.</param>
 47        /// <param name="address">The postal address of where the entity is
 48        /// located</param>
 49        /// <param name="telephone">The entity's telephone number</param>
 50        public Place(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = default(ILis
 051            : base(id, contractualRules, webSearchUrl, name, url, image, description, entityPresentationInfo, bingId)
 52        {
 053            Address = address;
 054            Telephone = telephone;
 55            CustomInit();
 056        }
 57
 58        /// <summary>
 59        /// An initialization method that performs custom operations like setting defaults
 60        /// </summary>
 61        partial void CustomInit();
 62
 63        /// <summary>
 64        /// Gets the postal address of where the entity is located
 65        /// </summary>
 66        [JsonProperty(PropertyName = "address")]
 067        public PostalAddress Address { get; private set; }
 68
 69        /// <summary>
 70        /// Gets the entity's telephone number
 71        /// </summary>
 72        [JsonProperty(PropertyName = "telephone")]
 073        public string Telephone { get; private set; }
 74
 75        /// <summary>
 76        /// Validate the object.
 77        /// </summary>
 78        /// <exception cref="Rest.ValidationException">
 79        /// Thrown if validation fails
 80        /// </exception>
 81        public override void Validate()
 82        {
 083            base.Validate();
 084            if (Address != null)
 85            {
 086                Address.Validate();
 87            }
 088        }
 89    }
 90}