/// <summary>
 /// Gets realtime data based on the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="IHttpResponse"/> representing the response.</returns>
 public IHttpResponse GetRealtimeData(AnalyticsGetRealtimeDataOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.GetResponse(options));
 }
예제 #2
0
 /// <summary>
 /// Gets realtime data based on the specified <paramref name="options"/>
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="AnalyticsGetRealtimeDataResponse"/> representing the response.</returns>
 public AnalyticsGetRealtimeDataResponse GetRealtimeData(AnalyticsGetRealtimeDataOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(AnalyticsGetRealtimeDataResponse.ParseResponse(Raw.GetRealtimeData(options)));
 }