/// <summary>
 /// Browse using a browse path
 /// </summary>
 /// <remarks>
 /// Browse using a path from the specified node id. This call uses
 /// TranslateBrowsePathsToNodeIds service under the hood. 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 browse path request
 /// </param>
 public static BrowsePathResponseApiModel BrowseUsingPath(this IAzureOpcTwinClient operations, string endpointId, BrowsePathRequestApiModel body)
 {
     return(operations.BrowseUsingPathAsync(endpointId, body).GetAwaiter().GetResult());
 }