make the OpenAPI info.version field accessible through the generated client (#400)
This commit is contained in:
parent
94db6ff74f
commit
4eb8cd6c21
|
@ -289,12 +289,25 @@ impl Generator {
|
|||
}
|
||||
});
|
||||
|
||||
let client_docstring = if let Some(description) = &spec.info.description
|
||||
{
|
||||
format!("Client for {}\n\n{}", spec.info.title, description)
|
||||
} else {
|
||||
format!("Client for {}", spec.info.title)
|
||||
let client_docstring = {
|
||||
let mut s = format!("Client for {}", spec.info.title);
|
||||
|
||||
if let Some(ss) = &spec.info.description {
|
||||
s.push_str("\n\n");
|
||||
s.push_str(ss);
|
||||
}
|
||||
if let Some(ss) = &spec.info.terms_of_service {
|
||||
s.push_str("\n\n");
|
||||
s.push_str(ss);
|
||||
}
|
||||
|
||||
s.push_str(&format!("\n\nVersion: {}", &spec.info.version));
|
||||
|
||||
s
|
||||
};
|
||||
|
||||
let version_str = &spec.info.version;
|
||||
|
||||
let file = quote! {
|
||||
// Re-export ResponseValue and Error since those are used by the
|
||||
// public interface of Client.
|
||||
|
@ -359,16 +372,24 @@ impl Generator {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
#version_str
|
||||
}
|
||||
|
||||
#maybe_inner
|
||||
}
|
||||
|
||||
|
|
|
@ -1577,6 +1577,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for Buildomat
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -1611,15 +1613,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -1577,6 +1577,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for Buildomat
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -1611,15 +1613,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -252,6 +252,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for Buildomat
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -286,15 +288,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -902,6 +902,8 @@ pub mod types {
|
|||
///Client for Keeper API
|
||||
///
|
||||
///report execution of cron jobs through a mechanism other than mail
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -936,15 +938,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -902,6 +902,8 @@ pub mod types {
|
|||
///Client for Keeper API
|
||||
///
|
||||
///report execution of cron jobs through a mechanism other than mail
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -936,15 +938,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -141,6 +141,8 @@ pub mod types {
|
|||
///Client for Keeper API
|
||||
///
|
||||
///report execution of cron jobs through a mechanism other than mail
|
||||
///
|
||||
///Version: 1.0
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -175,15 +177,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"1.0"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -17034,6 +17034,8 @@ pub mod types {
|
|||
///Client for Oxide Region API
|
||||
///
|
||||
///API for interacting with the Oxide control plane
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -17068,15 +17070,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
pub trait ClientDisksExt {
|
||||
|
|
|
@ -17090,6 +17090,8 @@ pub mod types {
|
|||
///Client for Oxide Region API
|
||||
///
|
||||
///API for interacting with the Oxide control plane
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -17124,15 +17126,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -5862,6 +5862,8 @@ pub mod types {
|
|||
///Client for Oxide Region API
|
||||
///
|
||||
///API for interacting with the Oxide control plane
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -5896,15 +5898,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -13,6 +13,8 @@ pub mod types {
|
|||
///Client for Parameter override test
|
||||
///
|
||||
///Minimal API for testing parameter overrides
|
||||
///
|
||||
///Version: v1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -47,15 +49,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"v1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -13,6 +13,8 @@ pub mod types {
|
|||
///Client for Parameter override test
|
||||
///
|
||||
///Minimal API for testing parameter overrides
|
||||
///
|
||||
///Version: v1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -47,15 +49,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"v1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -13,6 +13,8 @@ pub mod types {
|
|||
///Client for Parameter override test
|
||||
///
|
||||
///Minimal API for testing parameter overrides
|
||||
///
|
||||
///Version: v1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -47,15 +49,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"v1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -1955,6 +1955,8 @@ pub mod types {
|
|||
///Client for Oxide Propolis Server API
|
||||
///
|
||||
///API for interacting with the Propolis hypervisor frontend.
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -1989,15 +1991,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -1961,6 +1961,8 @@ pub mod types {
|
|||
///Client for Oxide Propolis Server API
|
||||
///
|
||||
///API for interacting with the Propolis hypervisor frontend.
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -1995,15 +1997,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -608,6 +608,8 @@ pub mod types {
|
|||
///Client for Oxide Propolis Server API
|
||||
///
|
||||
///API for interacting with the Propolis hypervisor frontend.
|
||||
///
|
||||
///Version: 0.0.1
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -642,15 +644,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"0.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -226,6 +226,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for pagination-demo
|
||||
///
|
||||
///Version: 9000
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -260,15 +262,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"9000"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -56,6 +56,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for pagination-demo
|
||||
///
|
||||
///Version: 9000
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -90,15 +92,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"9000"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -25,6 +25,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for pagination-demo
|
||||
///
|
||||
///Version: 9000
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -59,15 +61,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"9000"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
|
@ -25,6 +25,8 @@ pub mod types {
|
|||
|
||||
#[derive(Clone, Debug)]
|
||||
///Client for pagination-demo
|
||||
///
|
||||
///Version: 9000
|
||||
pub struct Client {
|
||||
pub(crate) baseurl: String,
|
||||
pub(crate) client: reqwest::Client,
|
||||
|
@ -59,15 +61,23 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
/// Return the base URL to which requests are made.
|
||||
/// Get the base URL to which requests are made.
|
||||
pub fn baseurl(&self) -> &String {
|
||||
&self.baseurl
|
||||
}
|
||||
|
||||
/// Return the internal `reqwest::Client` used to make requests.
|
||||
/// Get the internal `reqwest::Client` used to make requests.
|
||||
pub fn client(&self) -> &reqwest::Client {
|
||||
&self.client
|
||||
}
|
||||
|
||||
/// Get the version of this API.
|
||||
///
|
||||
/// This string is pulled directly from the source OpenAPI
|
||||
/// document and may be in any format the API selects.
|
||||
pub fn api_version(&self) -> &'static str {
|
||||
"9000"
|
||||
}
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
|
Loading…
Reference in New Issue