mangadex_api::v5::manga::id::list::list_id

Module post

Source
Expand description

Builder for the add manga to custom list endpoint.

https://api.mangadex.org/swagger.html#/Manga/post-manga-id-list-listId

§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 manga_id = Uuid::new_v4();
let list_id = Uuid::new_v4();
let res = client
    .manga()
    .id(manga_id)
    .list()
    .list_id(list_id)
    .post()
    .send()
    .await?;

println!("add manga to custom list: {:?}", res);

Structs§