/// <summary>
 /// Deletes the project matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="IHttpResponse"/> representing the raw response from the Toggl API.</returns>
 /// <see>
 ///     <cref>https://github.com/toggl/toggl_api_docs/blob/master/chapters/projects.md#delete-a-project</cref>
 /// </see>
 public IHttpResponse DeleteProject(TogglDeleteProjectOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.GetResponse(options));
 }
 /// <summary>
 /// Deletes the project matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="TogglResponse"/> representing the response from the Toggl API.</returns>
 /// <see>
 ///     <cref>https://github.com/toggl/toggl_api_docs/blob/master/chapters/projects.md#delete-a-project</cref>
 /// </see>
 public TogglResponse DeleteProject(TogglDeleteProjectOptions options)
 {
     return(new TogglResponse(Raw.DeleteProject(options)));
 }