/// <summary>
        /// Creating a POST request matcher
        /// </summary>
        /// <param name="path">The path you want the matcher to have.</param>
        /// <returns>Returns the <see cref="RequestMatcherBuilder"/> for further customizations.</returns>

        public RequestMatcherBuilder Post(string path)
        {
            return(RequestMatcherBuilder.CreateRequestMatcherBuilder(this, HttpMethod.Post, _scheme, _baseUrl, path));
        }
        /// <summary>
        /// Creating a PATCH request matcher
        /// </summary>
        /// <param name="path">The path you want the matcher to have.</param>
        /// <returns>Returns the <see cref="RequestMatcherBuilder"/> for further customizations.</returns>

        public RequestMatcherBuilder Patch(string path)
        {
            return(RequestMatcherBuilder.CreateRequestMatcherBuilder(this, new HttpMethod(PATCH), _scheme, _baseUrl, path));
        }