This commit is contained in:
Joel Wachsler 2022-08-06 11:55:23 +00:00
parent b565fcee44
commit 85ed345a9d

View File

@ -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
}
}