amazon_spapi/apis/
vendor_invoices_v1.rs1use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum SubmitInvoicesError {
22 Status400(models::vendor_invoices::SubmitInvoicesResponse),
23 Status403(models::vendor_invoices::SubmitInvoicesResponse),
24 Status404(models::vendor_invoices::SubmitInvoicesResponse),
25 Status413(models::vendor_invoices::SubmitInvoicesResponse),
26 Status415(models::vendor_invoices::SubmitInvoicesResponse),
27 Status429(models::vendor_invoices::SubmitInvoicesResponse),
28 Status500(models::vendor_invoices::SubmitInvoicesResponse),
29 Status503(models::vendor_invoices::SubmitInvoicesResponse),
30 UnknownValue(serde_json::Value),
31}
32
33
34pub async fn submit_invoices(configuration: &configuration::Configuration, body: models::vendor_invoices::SubmitInvoicesRequest) -> Result<models::vendor_invoices::SubmitInvoicesResponse, Error<SubmitInvoicesError>> {
36 let p_body = body;
38
39 let uri_str = format!("{}/vendor/payments/v1/invoices", configuration.base_path);
40 let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
41
42 if let Some(ref user_agent) = configuration.user_agent {
43 req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
44 }
45 req_builder = req_builder.json(&p_body);
46
47 let req = req_builder.build()?;
48 let resp = configuration.client.execute(req).await?;
49
50 let status = resp.status();
51 let content_type = resp
52 .headers()
53 .get("content-type")
54 .and_then(|v| v.to_str().ok())
55 .unwrap_or("application/octet-stream");
56 let content_type = super::ContentType::from(content_type);
57
58 if !status.is_client_error() && !status.is_server_error() {
59 let content = resp.text().await?;
60 match content_type {
61 ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
62 ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::vendor_invoices::SubmitInvoicesResponse`"))),
63 ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::vendor_invoices::SubmitInvoicesResponse`")))),
64 }
65 } else {
66 let content = resp.text().await?;
67 let entity: Option<SubmitInvoicesError> = serde_json::from_str(&content).ok();
68 Err(Error::ResponseError(ResponseContent { status, content, entity }))
69 }
70}
71