forked from loafle/openapi-generator-original
* Add support for enum schemas and properties to the rust generator Also: * Skip serializing a field with serde if it's optional and empty * Fix borrow checker error when using &std::path::Path (should be std::path::PathBuf) * Add script to generate sample with rust-reqwest * Regenerate petstore sample for both rust targets * Remove go code from README.md * Fix formatting of serde skip_serializing_if attribute
3.5 KiB
3.5 KiB
Rust API client for petstore_client
This is a sample server Petstore server. For this sample, you can use the api key special-key
to test the authorization filters.
Overview
This API client was generated by the OpenAPI Generator project. By using the openapi-spec from a remote server, you can easily generate an API client.
- API version: 1.0.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.RustClientCodegen
Installation
Put the package under your project folder and add the following to Cargo.toml
under [dependencies]
:
openapi = { path = "./generated" }
Documentation for API Endpoints
All URIs are relative to http://petstore.swagger.io/v2
Class | Method | HTTP request | Description |
---|---|---|---|
PetApi | add_pet | Post /pet | Add a new pet to the store |
PetApi | delete_pet | Delete /pet/{petId} | Deletes a pet |
PetApi | find_pets_by_status | Get /pet/findByStatus | Finds Pets by status |
PetApi | find_pets_by_tags | Get /pet/findByTags | Finds Pets by tags |
PetApi | get_pet_by_id | Get /pet/{petId} | Find pet by ID |
PetApi | update_pet | Put /pet | Update an existing pet |
PetApi | update_pet_with_form | Post /pet/{petId} | Updates a pet in the store with form data |
PetApi | upload_file | Post /pet/{petId}/uploadImage | uploads an image |
StoreApi | delete_order | Delete /store/order/{orderId} | Delete purchase order by ID |
StoreApi | get_inventory | Get /store/inventory | Returns pet inventories by status |
StoreApi | get_order_by_id | Get /store/order/{orderId} | Find purchase order by ID |
StoreApi | place_order | Post /store/order | Place an order for a pet |
UserApi | create_user | Post /user | Create user |
UserApi | create_users_with_array_input | Post /user/createWithArray | Creates list of users with given input array |
UserApi | create_users_with_list_input | Post /user/createWithList | Creates list of users with given input array |
UserApi | delete_user | Delete /user/{username} | Delete user |
UserApi | get_user_by_name | Get /user/{username} | Get user by user name |
UserApi | login_user | Get /user/login | Logs user into the system |
UserApi | logout_user | Get /user/logout | Logs out current logged in user session |
UserApi | update_user | Put /user/{username} | Updated user |
Documentation For Models
To get access to the crate's generated documentation, use:
cargo doc --open