diff --git a/src/types/response.rs b/src/types/response.rs index de9e3db..3c07c8a 100644 --- a/src/types/response.rs +++ b/src/types/response.rs @@ -181,9 +181,9 @@ impl RpcResponseArgument for TorrentAdded {} #[derive(Deserialize, Debug)] pub struct TorrentRenamePath{ - pub path: String, - pub name: String, - pub id: i64 + pub path: Option, + pub name: Option, + pub id: Option, } impl RpcResponseArgument for TorrentRenamePath {}