< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.MovieTheater
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\MovieTheater.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:75
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_ScreenCount()-0%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\MovieTheater.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 MovieTheater : EntertainmentBusiness
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the MovieTheater class.
 18        /// </summary>
 019        public MovieTheater()
 20        {
 21            CustomInit();
 022        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the MovieTheater 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        /// <param name="priceRange">$$.</param>
 47        public MovieTheater(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = defau
 048            : base(id, contractualRules, webSearchUrl, name, url, image, description, entityPresentationInfo, bingId, ad
 49        {
 050            ScreenCount = screenCount;
 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 = "screenCount")]
 062        public int? ScreenCount { get; private set; }
 63
 64        /// <summary>
 65        /// Validate the object.
 66        /// </summary>
 67        /// <exception cref="Rest.ValidationException">
 68        /// Thrown if validation fails
 69        /// </exception>
 70        public override void Validate()
 71        {
 072            base.Validate();
 073        }
 74    }
 75}