Module mangadex_api::v5::scanlation_group::unfollow
source · [−]Expand description
Builder for the unfollow scanlation group endpoint.
https://api.mangadex.org/swagger.html#/ScanlationGroup/delete-group-id-follow
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()
.username(Username::parse("myusername")?)
.password(Password::parse("hunter23")?)
.build()?
.send()
.await?;
let group_id = Uuid::new_v4();
let res = client
.scanlation_group()
.unfollow()
.group_id(&group_id)
.build()?
.send()
.await?;
println!("unfollow group: {:?}", res);
Structs
Builder for UnfollowGroup
.
Enums
Error type for UnfollowGroupBuilder