osdm_sys/apis/
versions_api.rs

1/*
2 * UIC 90918-10 - OSDM
3 *
4 * Specifications for the OSDM API standard. The OSDM specification supports two modes of operation: Retailer Mode and Distributor Mode. The API works identically in both modes, except that in distributor mode the API also returns fare information.  The following resources are key to get started:    -  [Processes](https://osdm.io/spec/processes/)   -  [Models](https://osdm.io/spec/models/)   -  [Getting started](https://osdm.io/spec/getting-started/) 
5 *
6 * The version of the OpenAPI document: 3.7.0
7 * Contact: osdm@uic.org
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18/// struct for typed errors of method [`get_versions`]
19#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum GetVersionsError {
22    Status401(models::Problem),
23    Status501(models::Problem),
24    UnknownValue(serde_json::Value),
25}
26
27
28pub async fn get_versions(configuration: &configuration::Configuration, ) -> Result<Vec<models::ApiVersion>, Error<GetVersionsError>> {
29
30    let uri_str = format!("{}/versions", configuration.base_path);
31    let mut req_builder = configuration.client.request(reqwest::Method::GET, &uri_str);
32
33    if let Some(ref user_agent) = configuration.user_agent {
34        req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
35    }
36    if let Some(ref token) = configuration.oauth_access_token {
37        req_builder = req_builder.bearer_auth(token.to_owned());
38    };
39
40    let req = req_builder.build()?;
41    let resp = configuration.client.execute(req).await?;
42
43    let status = resp.status();
44    let content_type = resp
45        .headers()
46        .get("content-type")
47        .and_then(|v| v.to_str().ok())
48        .unwrap_or("application/octet-stream");
49    let content_type = super::ContentType::from(content_type);
50
51    if !status.is_client_error() && !status.is_server_error() {
52        let content = resp.text().await?;
53        match content_type {
54            ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
55            ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `Vec&lt;models::ApiVersion&gt;`"))),
56            ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `Vec&lt;models::ApiVersion&gt;`")))),
57        }
58    } else {
59        let content = resp.text().await?;
60        let entity: Option<GetVersionsError> = serde_json::from_str(&content).ok();
61        Err(Error::ResponseError(ResponseContent { status, content, entity }))
62    }
63}
64