Client interface
Shape of a Rest Level Client
Properties
| path | This method will be used to send request that would check the path to provide strong types. When used by the codegen this type gets overridden with the generated types. For example:  | 
| path | This method allows arbitrary paths and doesn't provide strong types | 
| pipeline | The pipeline used by this client to make requests | 
Property Details
path
This method will be used to send request that would check the path to provide strong types. When used by the codegen this type gets overridden with the generated types. For example:
import { Client } from "@azure-rest/core-client";
type MyClient = Client & {
  path: Routes;
};
path: FunctionProperty Value
Function
		pathUnchecked
	 
	This method allows arbitrary paths and doesn't provide strong types
pathUnchecked: PathUnchecked