Expand description
Builder for the scanlation group view endpoint.
https://api.mangadex.org/docs/swagger.html#/ScanlationGroup/get-group-id
§Examples
use uuid::Uuid;
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let group_id = Uuid::new_v4();
let group_res = client
.scanlation_group()
.id(group_id)
.get()
.send()
.await?;
println!("group view: {:?}", group_res);
Structs§
- Builder for
GetGroup
.