/// <summary>
 /// Initializes a new instance of the SearchResultsAnswer class.
 /// </summary>
 /// <param name="id">A String identifier.</param>
 /// <param name="readLink">The URL that returns this resource.</param>
 /// <param name="webSearchUrl">The URL To Bing's search result for this
 /// item.</param>
 public SearchResultsAnswer(string id = default(string), string readLink = default(string), string webSearchUrl = default(string), IList <Action> potentialAction = default(IList <Action>), IList <Action> immediateAction = default(IList <Action>), string preferredClickthroughUrl = default(string), string adaptiveCard = default(string), QueryContext queryContext = default(QueryContext))
     : base(id, readLink, webSearchUrl, potentialAction, immediateAction, preferredClickthroughUrl, adaptiveCard)
 {
     QueryContext = queryContext;
     CustomInit();
 }