/// <summary>
 /// Initializes a new instance of the <see cref="AppInsightQuery"/> class.
 /// </summary>
 /// <param name="credentials">The credentials for the query</param>
 /// <param name="queryString">The query string</param>
 /// <param name="querySpan">The query timespan</param>
 public AppInsightQuery(AppInsightsCredentials credentials, string queryString, TimeSpan querySpan) : this(credentials, queryString)
 {
     QuerySpan = querySpan;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AppInsightQuery"/> class.
 /// </summary>
 /// <param name="credentials">The credentials for the query</param>
 /// <param name="queryString">The query string.</param>
 public AppInsightQuery(AppInsightsCredentials credentials, string queryString)
 {
     QueryString = queryString;
     Credentials = credentials;
 }