Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hidden_path (0.5 sec)

  1. tests/test_param_include_in_schema.py

        hidden_header: Optional[str] = Header(default=None, include_in_schema=False),
    ):
        return {"hidden_header": hidden_header}
    
    
    @app.get("/hidden_path/{hidden_path}")
    async def hidden_path(hidden_path: str = Path(include_in_schema=False)):
        return {"hidden_path": hidden_path}
    
    
    @app.get("/hidden_query")
    async def hidden_query(
        hidden_query: Optional[str] = Query(default=None, include_in_schema=False),
    ):
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 26 16:56:53 GMT 2024
    - 7.4K bytes
    - Viewed (0)
Back to top