Last updated:
0 purchases
openapi fastapi
openapi #
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
This Dart package is automatically generated by the OpenAPI Generator project:
API version: 1.0.0
Build package: org.openapitools.codegen.languages.DartClientCodegen
Requirements #
Dart 2.12 or later
Installation & Usage #
Github #
If this Dart package is published to Github, add the following dependency to your pubspec.yaml
dependencies:
openapi:
git: https://github.com/GIT_USER_ID/GIT_REPO_ID.git
copied to clipboard
Local #
To use the package in your local drive, add the following dependency to your pubspec.yaml
dependencies:
openapi:
path: /path/to/openapi
copied to clipboard
Tests #
TODO
Getting Started #
Please follow the installation procedure and then run the following:
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final product = Product(); // Product |
try {
final result = api_instance.createProductProductsPost(product);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->createProductProductsPost: $e\n');
}
copied to clipboard
Documentation for API Endpoints #
All URIs are relative to http://localhost
Class
Method
HTTP request
Description
DefaultApi
createProductProductsPost
POST /products
createProduct
DefaultApi
deleteProductProductsIdDelete
DELETE /products/{id}
deleteProduct
DefaultApi
deleteProductsProductsDelete
DELETE /products
deleteProducts
DefaultApi
getProductProductsIdGet
GET /products/{id}
getProduct
DefaultApi
getProductsProductsGet
GET /products
getProducts
DefaultApi
updateProductProductsIdPut
PUT /products/{id}
updateProduct
Documentation For Models #
HTTPValidationError
Product
ValidationError
Documentation For Authorization #
All endpoints do not require authorization.
Author #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.