/// <summary>
 /// Browse next set of unique target nodes
 /// </summary>
 /// <remarks>
 /// Browse the next set of unique hierarchically referenced target nodes on the
 /// endpoint. The endpoint must be activated and connected and the module
 /// client and server must trust each other. Note that this is the same as the
 /// POST method with the model containing the continuation token and the
 /// targetNodesOnly flag set to true.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='endpointId'>
 /// The identifier of the activated endpoint.
 /// </param>
 /// <param name='continuationToken'>
 /// Continuation token from GetSetOfUniqueNodes operation
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <BrowseNextResponseApiModel> GetNextSetOfUniqueNodesAsync(this IAzureOpcTwinClient operations, string endpointId, string continuationToken, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetNextSetOfUniqueNodesWithHttpMessagesAsync(endpointId, continuationToken, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }