Lots of changes to get to FastAPI 95.1
This commit is contained in:
@@ -118,7 +118,7 @@ async def get_product_obj_li(
|
||||
|
||||
@router.get('/account/{account_id}/product/list', response_model=Resp_Body_Base)
|
||||
async def get_account_product_obj_li(
|
||||
account_id: str = Query(..., min_length=1, max_length=22),
|
||||
account_id: str = Path(min_length=11, max_length=22),
|
||||
for_obj_type: Optional[str] = Query(None, min_length=2, max_length=50),
|
||||
for_obj_id: Optional[str] = Query(None, min_length=1, max_length=22),
|
||||
prod_type: Optional[str] = Query(None, min_length=2, max_length=50),
|
||||
|
||||
Reference in New Issue
Block a user