mangadex_api/v5/upload/begin/
chapter_id.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use crate::HttpClientRef;

use uuid::Uuid;

use self::post::StartEditChapterSessionBuilder;

pub mod post;

/// Statistics endpoint handler builder.
#[derive(Clone, Debug)]
pub struct ChapterIdEndpoint {
    http_client: HttpClientRef,
    id: Uuid,
}

impl ChapterIdEndpoint {
    #[doc(hidden)]
    pub(crate) fn new(http_client: HttpClientRef, id: Uuid) -> Self {
        Self { http_client, id }
    }
    pub fn post(&self) -> StartEditChapterSessionBuilder {
        StartEditChapterSessionBuilder::default()
            .chapter_id(self.id)
            .http_client(self.http_client.clone())
    }
}