Expand description
Builder for the author view endpoint.
https://api.mangadex.org/docs/swagger.html#/Author/get-author-id
§Examples
use uuid::Uuid;
use mangadex_api::v5::MangaDexClient;
let client = MangaDexClient::default();
let author_id = Uuid::new_v4();
let res = client
.author()
.id(author_id)
.get()
.send()
.await?;
println!("author view: {:?}", res);
Structs§
- Builder for
GetAuthor
.