forked from loafle/openapi-generator-original
Co-authored-by: Akihito Nakano <sora.akatsuki@gmail.com> Co-authored-by: Jeremie Bresson <dev@jmini.fr> Co-authored-by: Jim Schubert <james.schubert@gmail.com> Co-authored-by: Martin Delille <martin@phonations.com> Co-authored-by: Tomasz Prus <tomasz.prus@gmail.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
659 lines
26 KiB
Rust
659 lines
26 KiB
Rust
#![allow(missing_docs, trivial_casts, unused_variables, unused_mut, unused_imports, unused_extern_crates, non_camel_case_types)]
|
|
extern crate serde;
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
extern crate serde_json;
|
|
|
|
extern crate serde_xml_rs;
|
|
extern crate futures;
|
|
extern crate chrono;
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
// Logically this should be in the client and server modules, but rust doesn't allow `macro_use` from a module.
|
|
#[cfg(any(feature = "client", feature = "server"))]
|
|
#[macro_use]
|
|
extern crate hyper;
|
|
|
|
extern crate swagger;
|
|
|
|
use futures::Stream;
|
|
use std::io::Error;
|
|
|
|
#[allow(unused_imports)]
|
|
use std::collections::HashMap;
|
|
|
|
pub use futures::Future;
|
|
|
|
#[cfg(any(feature = "client", feature = "server"))]
|
|
mod mimetypes;
|
|
|
|
pub use swagger::{ApiError, Context, ContextWrapper};
|
|
|
|
pub const BASE_PATH: &'static str = "/v2";
|
|
pub const API_VERSION: &'static str = "1.0.0";
|
|
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestSpecialTagsResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Client ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestBodyWithQueryParamsResponse {
|
|
/// Success
|
|
Success ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FakeOuterBooleanSerializeResponse {
|
|
/// Output boolean
|
|
OutputBoolean ( models::OuterBoolean ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FakeOuterCompositeSerializeResponse {
|
|
/// Output composite
|
|
OutputComposite ( models::OuterComposite ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FakeOuterNumberSerializeResponse {
|
|
/// Output number
|
|
OutputNumber ( models::OuterNumber ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FakeOuterStringSerializeResponse {
|
|
/// Output string
|
|
OutputString ( models::OuterString ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestClientModelResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Client ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestEndpointParametersResponse {
|
|
/// Invalid username supplied
|
|
InvalidUsernameSupplied ,
|
|
/// User not found
|
|
UserNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestEnumParametersResponse {
|
|
/// Invalid request
|
|
InvalidRequest ,
|
|
/// Not found
|
|
NotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestInlineAdditionalPropertiesResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestJsonFormDataResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum TestClassnameResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Client ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum AddPetResponse {
|
|
/// Invalid input
|
|
InvalidInput ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum DeletePetResponse {
|
|
/// Invalid pet value
|
|
InvalidPetValue ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FindPetsByStatusResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( Vec<models::Pet> ) ,
|
|
/// Invalid status value
|
|
InvalidStatusValue ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum FindPetsByTagsResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( Vec<models::Pet> ) ,
|
|
/// Invalid tag value
|
|
InvalidTagValue ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum GetPetByIdResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Pet ) ,
|
|
/// Invalid ID supplied
|
|
InvalidIDSupplied ,
|
|
/// Pet not found
|
|
PetNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum UpdatePetResponse {
|
|
/// Invalid ID supplied
|
|
InvalidIDSupplied ,
|
|
/// Pet not found
|
|
PetNotFound ,
|
|
/// Validation exception
|
|
ValidationException ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum UpdatePetWithFormResponse {
|
|
/// Invalid input
|
|
InvalidInput ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum UploadFileResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::ApiResponse ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum DeleteOrderResponse {
|
|
/// Invalid ID supplied
|
|
InvalidIDSupplied ,
|
|
/// Order not found
|
|
OrderNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum GetInventoryResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( HashMap<String, i32> ) ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum GetOrderByIdResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Order ) ,
|
|
/// Invalid ID supplied
|
|
InvalidIDSupplied ,
|
|
/// Order not found
|
|
OrderNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum PlaceOrderResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::Order ) ,
|
|
/// Invalid Order
|
|
InvalidOrder ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum CreateUserResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum CreateUsersWithArrayInputResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum CreateUsersWithListInputResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum DeleteUserResponse {
|
|
/// Invalid username supplied
|
|
InvalidUsernameSupplied ,
|
|
/// User not found
|
|
UserNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum GetUserByNameResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ( models::User ) ,
|
|
/// Invalid username supplied
|
|
InvalidUsernameSupplied ,
|
|
/// User not found
|
|
UserNotFound ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum LoginUserResponse {
|
|
/// successful operation
|
|
SuccessfulOperation { body: String, x_rate_limit: i32, x_expires_after: chrono::DateTime<chrono::Utc> } ,
|
|
/// Invalid username/password supplied
|
|
InvalidUsername ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum LogoutUserResponse {
|
|
/// successful operation
|
|
SuccessfulOperation ,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum UpdateUserResponse {
|
|
/// Invalid user supplied
|
|
InvalidUserSupplied ,
|
|
/// User not found
|
|
UserNotFound ,
|
|
}
|
|
|
|
|
|
/// API
|
|
pub trait Api {
|
|
|
|
/// To test special tags
|
|
fn test_special_tags(&self, body: models::Client, context: &Context) -> Box<Future<Item=TestSpecialTagsResponse, Error=ApiError>>;
|
|
|
|
|
|
fn test_body_with_query_params(&self, body: models::User, query: String, context: &Context) -> Box<Future<Item=TestBodyWithQueryParamsResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_boolean_serialize(&self, body: Option<models::OuterBoolean>, context: &Context) -> Box<Future<Item=FakeOuterBooleanSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_composite_serialize(&self, body: Option<models::OuterComposite>, context: &Context) -> Box<Future<Item=FakeOuterCompositeSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_number_serialize(&self, body: Option<models::OuterNumber>, context: &Context) -> Box<Future<Item=FakeOuterNumberSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_string_serialize(&self, body: Option<models::OuterString>, context: &Context) -> Box<Future<Item=FakeOuterStringSerializeResponse, Error=ApiError>>;
|
|
|
|
/// To test \"client\" model
|
|
fn test_client_model(&self, body: models::Client, context: &Context) -> Box<Future<Item=TestClientModelResponse, Error=ApiError>>;
|
|
|
|
/// Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
|
fn test_endpoint_parameters(&self, number: f64, double: f64, pattern_without_delimiter: String, byte: swagger::ByteArray, integer: Option<i32>, int32: Option<i32>, int64: Option<i64>, float: Option<f32>, string: Option<String>, binary: Option<swagger::ByteArray>, date: Option<chrono::DateTime<chrono::Utc>>, date_time: Option<chrono::DateTime<chrono::Utc>>, password: Option<String>, callback: Option<String>, context: &Context) -> Box<Future<Item=TestEndpointParametersResponse, Error=ApiError>>;
|
|
|
|
/// To test enum parameters
|
|
fn test_enum_parameters(&self, enum_form_string_array: Option<&Vec<String>>, enum_form_string: Option<String>, enum_header_string_array: Option<&Vec<String>>, enum_header_string: Option<String>, enum_query_string_array: Option<&Vec<String>>, enum_query_string: Option<String>, enum_query_integer: Option<i32>, enum_query_double: Option<f64>, context: &Context) -> Box<Future<Item=TestEnumParametersResponse, Error=ApiError>>;
|
|
|
|
/// test inline additionalProperties
|
|
fn test_inline_additional_properties(&self, param: object, context: &Context) -> Box<Future<Item=TestInlineAdditionalPropertiesResponse, Error=ApiError>>;
|
|
|
|
/// test json serialization of form data
|
|
fn test_json_form_data(&self, param: String, param2: String, context: &Context) -> Box<Future<Item=TestJsonFormDataResponse, Error=ApiError>>;
|
|
|
|
/// To test class name in snake case
|
|
fn test_classname(&self, body: models::Client, context: &Context) -> Box<Future<Item=TestClassnameResponse, Error=ApiError>>;
|
|
|
|
/// Add a new pet to the store
|
|
fn add_pet(&self, body: models::Pet, context: &Context) -> Box<Future<Item=AddPetResponse, Error=ApiError>>;
|
|
|
|
/// Deletes a pet
|
|
fn delete_pet(&self, pet_id: i64, api_key: Option<String>, context: &Context) -> Box<Future<Item=DeletePetResponse, Error=ApiError>>;
|
|
|
|
/// Finds Pets by status
|
|
fn find_pets_by_status(&self, status: &Vec<String>, context: &Context) -> Box<Future<Item=FindPetsByStatusResponse, Error=ApiError>>;
|
|
|
|
/// Finds Pets by tags
|
|
fn find_pets_by_tags(&self, tags: &Vec<String>, context: &Context) -> Box<Future<Item=FindPetsByTagsResponse, Error=ApiError>>;
|
|
|
|
/// Find pet by ID
|
|
fn get_pet_by_id(&self, pet_id: i64, context: &Context) -> Box<Future<Item=GetPetByIdResponse, Error=ApiError>>;
|
|
|
|
/// Update an existing pet
|
|
fn update_pet(&self, body: models::Pet, context: &Context) -> Box<Future<Item=UpdatePetResponse, Error=ApiError>>;
|
|
|
|
/// Updates a pet in the store with form data
|
|
fn update_pet_with_form(&self, pet_id: i64, name: Option<String>, status: Option<String>, context: &Context) -> Box<Future<Item=UpdatePetWithFormResponse, Error=ApiError>>;
|
|
|
|
/// uploads an image
|
|
fn upload_file(&self, pet_id: i64, additional_metadata: Option<String>, file: Box<Future<Item=Option<Box<Stream<Item=Vec<u8>, Error=Error> + Send>>, Error=Error> + Send>, context: &Context) -> Box<Future<Item=UploadFileResponse, Error=ApiError>>;
|
|
|
|
/// Delete purchase order by ID
|
|
fn delete_order(&self, order_id: String, context: &Context) -> Box<Future<Item=DeleteOrderResponse, Error=ApiError>>;
|
|
|
|
/// Returns pet inventories by status
|
|
fn get_inventory(&self, context: &Context) -> Box<Future<Item=GetInventoryResponse, Error=ApiError>>;
|
|
|
|
/// Find purchase order by ID
|
|
fn get_order_by_id(&self, order_id: i64, context: &Context) -> Box<Future<Item=GetOrderByIdResponse, Error=ApiError>>;
|
|
|
|
/// Place an order for a pet
|
|
fn place_order(&self, body: models::Order, context: &Context) -> Box<Future<Item=PlaceOrderResponse, Error=ApiError>>;
|
|
|
|
/// Create user
|
|
fn create_user(&self, body: models::User, context: &Context) -> Box<Future<Item=CreateUserResponse, Error=ApiError>>;
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_array_input(&self, body: &Vec<models::User>, context: &Context) -> Box<Future<Item=CreateUsersWithArrayInputResponse, Error=ApiError>>;
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_list_input(&self, body: &Vec<models::User>, context: &Context) -> Box<Future<Item=CreateUsersWithListInputResponse, Error=ApiError>>;
|
|
|
|
/// Delete user
|
|
fn delete_user(&self, username: String, context: &Context) -> Box<Future<Item=DeleteUserResponse, Error=ApiError>>;
|
|
|
|
/// Get user by user name
|
|
fn get_user_by_name(&self, username: String, context: &Context) -> Box<Future<Item=GetUserByNameResponse, Error=ApiError>>;
|
|
|
|
/// Logs user into the system
|
|
fn login_user(&self, username: String, password: String, context: &Context) -> Box<Future<Item=LoginUserResponse, Error=ApiError>>;
|
|
|
|
/// Logs out current logged in user session
|
|
fn logout_user(&self, context: &Context) -> Box<Future<Item=LogoutUserResponse, Error=ApiError>>;
|
|
|
|
/// Updated user
|
|
fn update_user(&self, username: String, body: models::User, context: &Context) -> Box<Future<Item=UpdateUserResponse, Error=ApiError>>;
|
|
|
|
}
|
|
|
|
/// API without a `Context`
|
|
pub trait ApiNoContext {
|
|
|
|
/// To test special tags
|
|
fn test_special_tags(&self, body: models::Client) -> Box<Future<Item=TestSpecialTagsResponse, Error=ApiError>>;
|
|
|
|
|
|
fn test_body_with_query_params(&self, body: models::User, query: String) -> Box<Future<Item=TestBodyWithQueryParamsResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_boolean_serialize(&self, body: Option<models::OuterBoolean>) -> Box<Future<Item=FakeOuterBooleanSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_composite_serialize(&self, body: Option<models::OuterComposite>) -> Box<Future<Item=FakeOuterCompositeSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_number_serialize(&self, body: Option<models::OuterNumber>) -> Box<Future<Item=FakeOuterNumberSerializeResponse, Error=ApiError>>;
|
|
|
|
|
|
fn fake_outer_string_serialize(&self, body: Option<models::OuterString>) -> Box<Future<Item=FakeOuterStringSerializeResponse, Error=ApiError>>;
|
|
|
|
/// To test \"client\" model
|
|
fn test_client_model(&self, body: models::Client) -> Box<Future<Item=TestClientModelResponse, Error=ApiError>>;
|
|
|
|
/// Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
|
fn test_endpoint_parameters(&self, number: f64, double: f64, pattern_without_delimiter: String, byte: swagger::ByteArray, integer: Option<i32>, int32: Option<i32>, int64: Option<i64>, float: Option<f32>, string: Option<String>, binary: Option<swagger::ByteArray>, date: Option<chrono::DateTime<chrono::Utc>>, date_time: Option<chrono::DateTime<chrono::Utc>>, password: Option<String>, callback: Option<String>) -> Box<Future<Item=TestEndpointParametersResponse, Error=ApiError>>;
|
|
|
|
/// To test enum parameters
|
|
fn test_enum_parameters(&self, enum_form_string_array: Option<&Vec<String>>, enum_form_string: Option<String>, enum_header_string_array: Option<&Vec<String>>, enum_header_string: Option<String>, enum_query_string_array: Option<&Vec<String>>, enum_query_string: Option<String>, enum_query_integer: Option<i32>, enum_query_double: Option<f64>) -> Box<Future<Item=TestEnumParametersResponse, Error=ApiError>>;
|
|
|
|
/// test inline additionalProperties
|
|
fn test_inline_additional_properties(&self, param: object) -> Box<Future<Item=TestInlineAdditionalPropertiesResponse, Error=ApiError>>;
|
|
|
|
/// test json serialization of form data
|
|
fn test_json_form_data(&self, param: String, param2: String) -> Box<Future<Item=TestJsonFormDataResponse, Error=ApiError>>;
|
|
|
|
/// To test class name in snake case
|
|
fn test_classname(&self, body: models::Client) -> Box<Future<Item=TestClassnameResponse, Error=ApiError>>;
|
|
|
|
/// Add a new pet to the store
|
|
fn add_pet(&self, body: models::Pet) -> Box<Future<Item=AddPetResponse, Error=ApiError>>;
|
|
|
|
/// Deletes a pet
|
|
fn delete_pet(&self, pet_id: i64, api_key: Option<String>) -> Box<Future<Item=DeletePetResponse, Error=ApiError>>;
|
|
|
|
/// Finds Pets by status
|
|
fn find_pets_by_status(&self, status: &Vec<String>) -> Box<Future<Item=FindPetsByStatusResponse, Error=ApiError>>;
|
|
|
|
/// Finds Pets by tags
|
|
fn find_pets_by_tags(&self, tags: &Vec<String>) -> Box<Future<Item=FindPetsByTagsResponse, Error=ApiError>>;
|
|
|
|
/// Find pet by ID
|
|
fn get_pet_by_id(&self, pet_id: i64) -> Box<Future<Item=GetPetByIdResponse, Error=ApiError>>;
|
|
|
|
/// Update an existing pet
|
|
fn update_pet(&self, body: models::Pet) -> Box<Future<Item=UpdatePetResponse, Error=ApiError>>;
|
|
|
|
/// Updates a pet in the store with form data
|
|
fn update_pet_with_form(&self, pet_id: i64, name: Option<String>, status: Option<String>) -> Box<Future<Item=UpdatePetWithFormResponse, Error=ApiError>>;
|
|
|
|
/// uploads an image
|
|
fn upload_file(&self, pet_id: i64, additional_metadata: Option<String>, file: Box<Future<Item=Option<Box<Stream<Item=Vec<u8>, Error=Error> + Send>>, Error=Error> + Send>) -> Box<Future<Item=UploadFileResponse, Error=ApiError>>;
|
|
|
|
/// Delete purchase order by ID
|
|
fn delete_order(&self, order_id: String) -> Box<Future<Item=DeleteOrderResponse, Error=ApiError>>;
|
|
|
|
/// Returns pet inventories by status
|
|
fn get_inventory(&self) -> Box<Future<Item=GetInventoryResponse, Error=ApiError>>;
|
|
|
|
/// Find purchase order by ID
|
|
fn get_order_by_id(&self, order_id: i64) -> Box<Future<Item=GetOrderByIdResponse, Error=ApiError>>;
|
|
|
|
/// Place an order for a pet
|
|
fn place_order(&self, body: models::Order) -> Box<Future<Item=PlaceOrderResponse, Error=ApiError>>;
|
|
|
|
/// Create user
|
|
fn create_user(&self, body: models::User) -> Box<Future<Item=CreateUserResponse, Error=ApiError>>;
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_array_input(&self, body: &Vec<models::User>) -> Box<Future<Item=CreateUsersWithArrayInputResponse, Error=ApiError>>;
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_list_input(&self, body: &Vec<models::User>) -> Box<Future<Item=CreateUsersWithListInputResponse, Error=ApiError>>;
|
|
|
|
/// Delete user
|
|
fn delete_user(&self, username: String) -> Box<Future<Item=DeleteUserResponse, Error=ApiError>>;
|
|
|
|
/// Get user by user name
|
|
fn get_user_by_name(&self, username: String) -> Box<Future<Item=GetUserByNameResponse, Error=ApiError>>;
|
|
|
|
/// Logs user into the system
|
|
fn login_user(&self, username: String, password: String) -> Box<Future<Item=LoginUserResponse, Error=ApiError>>;
|
|
|
|
/// Logs out current logged in user session
|
|
fn logout_user(&self) -> Box<Future<Item=LogoutUserResponse, Error=ApiError>>;
|
|
|
|
/// Updated user
|
|
fn update_user(&self, username: String, body: models::User) -> Box<Future<Item=UpdateUserResponse, Error=ApiError>>;
|
|
|
|
}
|
|
|
|
/// Trait to extend an API to make it easy to bind it to a context.
|
|
pub trait ContextWrapperExt<'a> where Self: Sized {
|
|
/// Binds this API to a context.
|
|
fn with_context(self: &'a Self, context: Context) -> ContextWrapper<'a, Self>;
|
|
}
|
|
|
|
impl<'a, T: Api + Sized> ContextWrapperExt<'a> for T {
|
|
fn with_context(self: &'a T, context: Context) -> ContextWrapper<'a, T> {
|
|
ContextWrapper::<T>::new(self, context)
|
|
}
|
|
}
|
|
|
|
impl<'a, T: Api> ApiNoContext for ContextWrapper<'a, T> {
|
|
|
|
/// To test special tags
|
|
fn test_special_tags(&self, body: models::Client) -> Box<Future<Item=TestSpecialTagsResponse, Error=ApiError>> {
|
|
self.api().test_special_tags(body, &self.context())
|
|
}
|
|
|
|
|
|
fn test_body_with_query_params(&self, body: models::User, query: String) -> Box<Future<Item=TestBodyWithQueryParamsResponse, Error=ApiError>> {
|
|
self.api().test_body_with_query_params(body, query, &self.context())
|
|
}
|
|
|
|
|
|
fn fake_outer_boolean_serialize(&self, body: Option<models::OuterBoolean>) -> Box<Future<Item=FakeOuterBooleanSerializeResponse, Error=ApiError>> {
|
|
self.api().fake_outer_boolean_serialize(body, &self.context())
|
|
}
|
|
|
|
|
|
fn fake_outer_composite_serialize(&self, body: Option<models::OuterComposite>) -> Box<Future<Item=FakeOuterCompositeSerializeResponse, Error=ApiError>> {
|
|
self.api().fake_outer_composite_serialize(body, &self.context())
|
|
}
|
|
|
|
|
|
fn fake_outer_number_serialize(&self, body: Option<models::OuterNumber>) -> Box<Future<Item=FakeOuterNumberSerializeResponse, Error=ApiError>> {
|
|
self.api().fake_outer_number_serialize(body, &self.context())
|
|
}
|
|
|
|
|
|
fn fake_outer_string_serialize(&self, body: Option<models::OuterString>) -> Box<Future<Item=FakeOuterStringSerializeResponse, Error=ApiError>> {
|
|
self.api().fake_outer_string_serialize(body, &self.context())
|
|
}
|
|
|
|
/// To test \"client\" model
|
|
fn test_client_model(&self, body: models::Client) -> Box<Future<Item=TestClientModelResponse, Error=ApiError>> {
|
|
self.api().test_client_model(body, &self.context())
|
|
}
|
|
|
|
/// Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
|
fn test_endpoint_parameters(&self, number: f64, double: f64, pattern_without_delimiter: String, byte: swagger::ByteArray, integer: Option<i32>, int32: Option<i32>, int64: Option<i64>, float: Option<f32>, string: Option<String>, binary: Option<swagger::ByteArray>, date: Option<chrono::DateTime<chrono::Utc>>, date_time: Option<chrono::DateTime<chrono::Utc>>, password: Option<String>, callback: Option<String>) -> Box<Future<Item=TestEndpointParametersResponse, Error=ApiError>> {
|
|
self.api().test_endpoint_parameters(number, double, pattern_without_delimiter, byte, integer, int32, int64, float, string, binary, date, date_time, password, callback, &self.context())
|
|
}
|
|
|
|
/// To test enum parameters
|
|
fn test_enum_parameters(&self, enum_form_string_array: Option<&Vec<String>>, enum_form_string: Option<String>, enum_header_string_array: Option<&Vec<String>>, enum_header_string: Option<String>, enum_query_string_array: Option<&Vec<String>>, enum_query_string: Option<String>, enum_query_integer: Option<i32>, enum_query_double: Option<f64>) -> Box<Future<Item=TestEnumParametersResponse, Error=ApiError>> {
|
|
self.api().test_enum_parameters(enum_form_string_array, enum_form_string, enum_header_string_array, enum_header_string, enum_query_string_array, enum_query_string, enum_query_integer, enum_query_double, &self.context())
|
|
}
|
|
|
|
/// test inline additionalProperties
|
|
fn test_inline_additional_properties(&self, param: object) -> Box<Future<Item=TestInlineAdditionalPropertiesResponse, Error=ApiError>> {
|
|
self.api().test_inline_additional_properties(param, &self.context())
|
|
}
|
|
|
|
/// test json serialization of form data
|
|
fn test_json_form_data(&self, param: String, param2: String) -> Box<Future<Item=TestJsonFormDataResponse, Error=ApiError>> {
|
|
self.api().test_json_form_data(param, param2, &self.context())
|
|
}
|
|
|
|
/// To test class name in snake case
|
|
fn test_classname(&self, body: models::Client) -> Box<Future<Item=TestClassnameResponse, Error=ApiError>> {
|
|
self.api().test_classname(body, &self.context())
|
|
}
|
|
|
|
/// Add a new pet to the store
|
|
fn add_pet(&self, body: models::Pet) -> Box<Future<Item=AddPetResponse, Error=ApiError>> {
|
|
self.api().add_pet(body, &self.context())
|
|
}
|
|
|
|
/// Deletes a pet
|
|
fn delete_pet(&self, pet_id: i64, api_key: Option<String>) -> Box<Future<Item=DeletePetResponse, Error=ApiError>> {
|
|
self.api().delete_pet(pet_id, api_key, &self.context())
|
|
}
|
|
|
|
/// Finds Pets by status
|
|
fn find_pets_by_status(&self, status: &Vec<String>) -> Box<Future<Item=FindPetsByStatusResponse, Error=ApiError>> {
|
|
self.api().find_pets_by_status(status, &self.context())
|
|
}
|
|
|
|
/// Finds Pets by tags
|
|
fn find_pets_by_tags(&self, tags: &Vec<String>) -> Box<Future<Item=FindPetsByTagsResponse, Error=ApiError>> {
|
|
self.api().find_pets_by_tags(tags, &self.context())
|
|
}
|
|
|
|
/// Find pet by ID
|
|
fn get_pet_by_id(&self, pet_id: i64) -> Box<Future<Item=GetPetByIdResponse, Error=ApiError>> {
|
|
self.api().get_pet_by_id(pet_id, &self.context())
|
|
}
|
|
|
|
/// Update an existing pet
|
|
fn update_pet(&self, body: models::Pet) -> Box<Future<Item=UpdatePetResponse, Error=ApiError>> {
|
|
self.api().update_pet(body, &self.context())
|
|
}
|
|
|
|
/// Updates a pet in the store with form data
|
|
fn update_pet_with_form(&self, pet_id: i64, name: Option<String>, status: Option<String>) -> Box<Future<Item=UpdatePetWithFormResponse, Error=ApiError>> {
|
|
self.api().update_pet_with_form(pet_id, name, status, &self.context())
|
|
}
|
|
|
|
/// uploads an image
|
|
fn upload_file(&self, pet_id: i64, additional_metadata: Option<String>, file: Box<Future<Item=Option<Box<Stream<Item=Vec<u8>, Error=Error> + Send>>, Error=Error> + Send>) -> Box<Future<Item=UploadFileResponse, Error=ApiError>> {
|
|
self.api().upload_file(pet_id, additional_metadata, file, &self.context())
|
|
}
|
|
|
|
/// Delete purchase order by ID
|
|
fn delete_order(&self, order_id: String) -> Box<Future<Item=DeleteOrderResponse, Error=ApiError>> {
|
|
self.api().delete_order(order_id, &self.context())
|
|
}
|
|
|
|
/// Returns pet inventories by status
|
|
fn get_inventory(&self) -> Box<Future<Item=GetInventoryResponse, Error=ApiError>> {
|
|
self.api().get_inventory(&self.context())
|
|
}
|
|
|
|
/// Find purchase order by ID
|
|
fn get_order_by_id(&self, order_id: i64) -> Box<Future<Item=GetOrderByIdResponse, Error=ApiError>> {
|
|
self.api().get_order_by_id(order_id, &self.context())
|
|
}
|
|
|
|
/// Place an order for a pet
|
|
fn place_order(&self, body: models::Order) -> Box<Future<Item=PlaceOrderResponse, Error=ApiError>> {
|
|
self.api().place_order(body, &self.context())
|
|
}
|
|
|
|
/// Create user
|
|
fn create_user(&self, body: models::User) -> Box<Future<Item=CreateUserResponse, Error=ApiError>> {
|
|
self.api().create_user(body, &self.context())
|
|
}
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_array_input(&self, body: &Vec<models::User>) -> Box<Future<Item=CreateUsersWithArrayInputResponse, Error=ApiError>> {
|
|
self.api().create_users_with_array_input(body, &self.context())
|
|
}
|
|
|
|
/// Creates list of users with given input array
|
|
fn create_users_with_list_input(&self, body: &Vec<models::User>) -> Box<Future<Item=CreateUsersWithListInputResponse, Error=ApiError>> {
|
|
self.api().create_users_with_list_input(body, &self.context())
|
|
}
|
|
|
|
/// Delete user
|
|
fn delete_user(&self, username: String) -> Box<Future<Item=DeleteUserResponse, Error=ApiError>> {
|
|
self.api().delete_user(username, &self.context())
|
|
}
|
|
|
|
/// Get user by user name
|
|
fn get_user_by_name(&self, username: String) -> Box<Future<Item=GetUserByNameResponse, Error=ApiError>> {
|
|
self.api().get_user_by_name(username, &self.context())
|
|
}
|
|
|
|
/// Logs user into the system
|
|
fn login_user(&self, username: String, password: String) -> Box<Future<Item=LoginUserResponse, Error=ApiError>> {
|
|
self.api().login_user(username, password, &self.context())
|
|
}
|
|
|
|
/// Logs out current logged in user session
|
|
fn logout_user(&self) -> Box<Future<Item=LogoutUserResponse, Error=ApiError>> {
|
|
self.api().logout_user(&self.context())
|
|
}
|
|
|
|
/// Updated user
|
|
fn update_user(&self, username: String, body: models::User) -> Box<Future<Item=UpdateUserResponse, Error=ApiError>> {
|
|
self.api().update_user(username, body, &self.context())
|
|
}
|
|
|
|
}
|
|
|
|
#[cfg(feature = "client")]
|
|
pub mod client;
|
|
|
|
// Re-export Client as a top-level name
|
|
#[cfg(feature = "client")]
|
|
pub use self::client::Client;
|
|
|
|
#[cfg(feature = "server")]
|
|
pub mod server;
|
|
|
|
// Re-export router() as a top-level name
|
|
#[cfg(feature = "server")]
|
|
pub use self::server::Service;
|
|
|
|
pub mod models;
|