/// <summary>
 /// Read historic processed values at specified times
 /// </summary>
 /// <remarks>
 /// Read processed history values of a node if available using historic access.
 /// The endpoint must be activated and connected and the module client and
 /// server must trust each other.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='endpointId'>
 /// The identifier of the activated endpoint.
 /// </param>
 /// <param name='body'>
 /// The history read request
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <HistoricValueApiModelHistoryReadResponseApiModel> HistoryReadProcessedValuesAsync(this IAzureOpcHistoryClient operations, string endpointId, ReadProcessedValuesDetailsApiModelHistoryReadRequestApiModel body, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.HistoryReadProcessedValuesWithHttpMessagesAsync(endpointId, body, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Read historic processed values at specified times
 /// </summary>
 /// <remarks>
 /// Read processed history values of a node if available using historic access.
 /// The endpoint must be activated and connected and the module client and
 /// server must trust each other.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='endpointId'>
 /// The identifier of the activated endpoint.
 /// </param>
 /// <param name='body'>
 /// The history read request
 /// </param>
 public static HistoricValueApiModelHistoryReadResponseApiModel HistoryReadProcessedValues(this IAzureOpcHistoryClient operations, string endpointId, ReadProcessedValuesDetailsApiModelHistoryReadRequestApiModel body)
 {
     return(operations.HistoryReadProcessedValuesAsync(endpointId, body).GetAwaiter().GetResult());
 }