Expand description
Builder for deleting a set of uploaded images from an upload session.
https://api.mangadex.org/docs/swagger.html#/Upload/delete-uploaded-session-files
§Examples
use uuid::Uuid;
use mangadex_api::v5::MangaDexClient;
// use mangadex_api_types::{Password, Username};
let client = MangaDexClient::default();
/*
let _login_res = client
.auth()
.login()
.post()
.username(Username::parse("myusername")?)
.password(Password::parse("hunter23")?)
.send()
.await?;
*/
let session_id = Uuid::new_v4();
let session_file_id = Uuid::new_v4();
let res = client
.upload()
.upload_session_id(session_id)
.batch()
.delete()
.add_session_file_id(session_file_id)
.send()
.await?;
println!("delete images: {:?}", res);
Structs§
- Builder for
DeleteImages
.