diff --git a/qbittorrent-web-api-gen/src/generate/group_method.rs b/qbittorrent-web-api-gen/src/generate/group_method.rs index 1b74daf..2064c29 100644 --- a/qbittorrent-web-api-gen/src/generate/group_method.rs +++ b/qbittorrent-web-api-gen/src/generate/group_method.rs @@ -165,9 +165,14 @@ impl<'a> GroupMethod<'a> { .append_to_method_name("_raw") .generate_send_method(); + let send_method_raw_with_docs = util::add_docs( + &Some("Returns the raw response of the request.".into()), + send_method_raw, + ); + quote! { #send_method - #send_method_raw + #send_method_raw_with_docs } }