Expand description

Builder for the scanlation group view endpoint.

https://api.mangadex.org/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()
    .view()
    .group_id(&group_id)
    .build()?
    .send()
    .await?;

println!("group view: {:?}", group_res);

Structs

Enums

Error type for GetGroupBuilder