thiggle_client/apis/
thiggle_api.rs1use reqwest;
13
14use crate::apis::ResponseContent;
15use super::{Error, configuration};
16
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum V1CategorizePostError {
22 Status400(),
23 Status500(),
24 UnknownValue(serde_json::Value),
25}
26
27
28pub async fn v1_categorize_post(configuration: &configuration::Configuration, categorize_request: crate::models::CategorizeRequest) -> Result<crate::models::CategorizeResponse, Error<V1CategorizePostError>> {
29 let local_var_configuration = configuration;
30
31 let local_var_client = &local_var_configuration.client;
32
33 let local_var_uri_str = format!("{}/v1/categorize", local_var_configuration.base_path);
34 let mut local_var_req_builder = local_var_client.request(reqwest::Method::POST, local_var_uri_str.as_str());
35
36 if let Some(ref local_var_user_agent) = local_var_configuration.user_agent {
37 local_var_req_builder = local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone());
38 }
39 if let Some(ref local_var_token) = local_var_configuration.bearer_access_token {
40 local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned());
41 };
42 local_var_req_builder = local_var_req_builder.json(&categorize_request);
43
44 let local_var_req = local_var_req_builder.build()?;
45 let local_var_resp = local_var_client.execute(local_var_req).await?;
46
47 let local_var_status = local_var_resp.status();
48 let local_var_content = local_var_resp.text().await?;
49
50 if !local_var_status.is_client_error() && !local_var_status.is_server_error() {
51 serde_json::from_str(&local_var_content).map_err(Error::from)
52 } else {
53 let local_var_entity: Option<V1CategorizePostError> = serde_json::from_str(&local_var_content).ok();
54 let local_var_error = ResponseContent { status: local_var_status, content: local_var_content, entity: local_var_entity };
55 Err(Error::ResponseError(local_var_error))
56 }
57}
58