diff --git a/src/http/client.rs b/src/http/client.rs index 15ee7f4b382..a69bb7139fa 100644 --- a/src/http/client.rs +++ b/src/http/client.rs @@ -2982,6 +2982,26 @@ impl Http { .await } + /// Modifies information about the current application. + /// + /// **Note**: Only applications may use this endpoint. + pub async fn edit_current_application_info( + &self, + map: &impl serde::Serialize, + ) -> Result { + let body = to_vec(map)?; + + self.fire(Request { + body: Some(body), + multipart: None, + headers: None, + method: LightMethod::Patch, + route: Route::Oauth2ApplicationCurrent, + params: None, + }) + .await + } + /// Gets information about the user we're connected with. pub async fn get_current_user(&self) -> Result { self.fire(Request {