Example from enum import Enum from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Number(float, Enum): ten ...
確定! 回上一頁