< Summary

Class:Microsoft.Azure.CognitiveServices.Search.LocalSearch.Models.Action
Assembly:Microsoft.Azure.CognitiveServices.Search.BingLocalSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\Models\Action.cs
Covered lines:0
Uncovered lines:24
Coverable lines:24
Total lines:133
Line coverage:0% (0 of 24)
Covered branches:0
Total branches:12
Branch coverage:0% (0 of 12)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Location()-0%100%
get_Result()-0%100%
get_DisplayName()-0%100%
get_IsTopAction()-0%100%
get_ServiceUrl()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\Models\Action.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.LocalSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Defines an action.
 16    /// </summary>
 17    public partial class Action : CreativeWork
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the Action class.
 21        /// </summary>
 022        public Action()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the Action class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="readLink">The URL that returns this resource.</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="entityPresentationInfo">Additional information about
 39        /// the entity such as hints that you can use to determine the entity's
 40        /// type. To determine the entity's type, use the entityScenario and
 41        /// entityTypeHint fields.</param>
 42        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 43        /// item.</param>
 44        /// <param name="about">For internal use only.</param>
 45        /// <param name="mentions">For internal use only.</param>
 46        /// <param name="provider">The source of the creative work.</param>
 47        /// <param name="text">Text content of this creative work</param>
 48        /// <param name="result">The result produced in the action.</param>
 49        /// <param name="displayName">A display name for the action.</param>
 50        /// <param name="isTopAction">A Boolean representing whether this
 51        /// result is the top action.</param>
 52        /// <param name="serviceUrl">Use this URL to get additional data to
 53        /// determine how to take the appropriate action. For example, the
 54        /// serviceUrl might return JSON along with an image URL.</param>
 55        public Action(string id = default(string), string readLink = default(string), string webSearchUrl = default(stri
 056            : base(id, readLink, webSearchUrl, potentialAction, immediateAction, preferredClickthroughUrl, adaptiveCard,
 57        {
 058            Location = location;
 059            Result = result;
 060            DisplayName = displayName;
 061            IsTopAction = isTopAction;
 062            ServiceUrl = serviceUrl;
 63            CustomInit();
 064        }
 65
 66        /// <summary>
 67        /// An initialization method that performs custom operations like setting defaults
 68        /// </summary>
 69        partial void CustomInit();
 70
 71        /// <summary>
 72        /// </summary>
 73        [JsonProperty(PropertyName = "location")]
 074        public IList<Place> Location { get; private set; }
 75
 76        /// <summary>
 77        /// Gets the result produced in the action.
 78        /// </summary>
 79        [JsonProperty(PropertyName = "result")]
 080        public IList<Thing> Result { get; private set; }
 81
 82        /// <summary>
 83        /// Gets a display name for the action.
 84        /// </summary>
 85        [JsonProperty(PropertyName = "displayName")]
 086        public string DisplayName { get; private set; }
 87
 88        /// <summary>
 89        /// Gets a Boolean representing whether this result is the top action.
 90        /// </summary>
 91        [JsonProperty(PropertyName = "isTopAction")]
 092        public bool? IsTopAction { get; private set; }
 93
 94        /// <summary>
 95        /// Gets use this URL to get additional data to determine how to take
 96        /// the appropriate action. For example, the serviceUrl might return
 97        /// JSON along with an image URL.
 98        /// </summary>
 99        [JsonProperty(PropertyName = "serviceUrl")]
 0100        public string ServiceUrl { get; private set; }
 101
 102        /// <summary>
 103        /// Validate the object.
 104        /// </summary>
 105        /// <exception cref="Rest.ValidationException">
 106        /// Thrown if validation fails
 107        /// </exception>
 108        public override void Validate()
 109        {
 0110            base.Validate();
 0111            if (Location != null)
 112            {
 0113                foreach (var element in Location)
 114                {
 0115                    if (element != null)
 116                    {
 0117                        element.Validate();
 118                    }
 119                }
 120            }
 0121            if (Result != null)
 122            {
 0123                foreach (var element1 in Result)
 124                {
 0125                    if (element1 != null)
 126                    {
 0127                        element1.Validate();
 128                    }
 129                }
 130            }
 0131        }
 132    }
 133}