mangadex_api::v5::api_client::id::secret

Module get

Source
Expand description

Builder for getting client secret by its id.

https://api.mangadex.org/docs/redoc.html#tag/ApiClient/operation/get-apiclient-secret

§Examples

use mangadex_api::v5::MangaDexClient;
use uuid::Uuid;

let client = MangaDexClient::default();

let client_res = client
    .client()
    .id(Uuid::new_v4())
    .secret()
    .get()
    .send()
    .await?;

println!("client: {:?}", client_res);

Structs§