Enum representing possible HTTP paths that can be used in API operations.
This enum provides a type - safe way to specify the HTTP path for an API request.
Currently, it only includes the Default path, which maps to the root path (“/”).
The Debug derive allows for easy debugging by providing a default implementation
of the fmt::Debug trait, which enables printing the enum variants in a readable format.
The Clone derive allows for creating copies of the enum values when needed.