< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.Airport
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\Airport.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:80
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_IataCode()-0%100%
get_IcaoCode()-0%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\Airport.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 Airport : CivicStructure
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the Airport class.
 18        /// </summary>
 019        public Airport()
 20        {
 21            CustomInit();
 022        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the Airport 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        /// <param name="address">The postal address of where the entity is
 44        /// located</param>
 45        /// <param name="telephone">The entity's telephone number</param>
 46        public Airport(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = default(IL
 047            : base(id, contractualRules, webSearchUrl, name, url, image, description, entityPresentationInfo, bingId, ad
 48        {
 049            IataCode = iataCode;
 050            IcaoCode = icaoCode;
 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        /// </summary>
 61        [JsonProperty(PropertyName = "iataCode")]
 062        public string IataCode { get; private set; }
 63
 64        /// <summary>
 65        /// </summary>
 66        [JsonProperty(PropertyName = "icaoCode")]
 067        public string IcaoCode { get; private set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="Rest.ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public override void Validate()
 76        {
 077            base.Validate();
 078        }
 79    }
 80}