mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-01 10:37:47 -05:00
* Fix for - [FEATURE] Remove *, where it's not needed #1234 * 🔥 Remove unnecessary arg *, * 🎨 Update docs format highlight lines Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
33 lines
519 B
Python
33 lines
519 B
Python
from typing import List, Set
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel, HttpUrl
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Image(BaseModel):
|
|
url: HttpUrl
|
|
name: str
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
tags: Set[str] = []
|
|
images: List[Image] = None
|
|
|
|
|
|
class Offer(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
items: List[Item]
|
|
|
|
|
|
@app.post("/offers/")
|
|
async def create_offer(offer: Offer):
|
|
return offer
|