Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for price_with_tax (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs_src/body/tutorial002_py310.py

    
    app = FastAPI()
    
    
    @app.post("/items/")
    async def create_item(item: Item):
        item_dict = item.model_dump()
        if item.tax is not None:
            price_with_tax = item.price + item.tax
            item_dict.update({"price_with_tax": price_with_tax})
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 20 15:55:38 GMT 2025
    - 447 bytes
    - Click Count (0)
  2. docs_src/body/tutorial002_py39.py

    
    app = FastAPI()
    
    
    @app.post("/items/")
    async def create_item(item: Item):
        item_dict = item.model_dump()
        if item.tax is not None:
            price_with_tax = item.price + item.tax
            item_dict.update({"price_with_tax": price_with_tax})
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 20 15:55:38 GMT 2025
    - 485 bytes
    - Click Count (0)
Back to Top