Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for no_response_model_annotation_union_return_model2 (0.12 sec)

  1. tests/test_response_model_as_return_annotation.py

    
    @app.get("/no_response_model-annotation_union-return_model1")
    def no_response_model_annotation_union_return_model1() -> Union[User, Item]:
        return DBUser(name="John", surname="Doe", password_hash="secret")
    
    
    @app.get("/no_response_model-annotation_union-return_model2")
    def no_response_model_annotation_union_return_model2() -> Union[User, Item]:
        return Item(name="Foo", price=42.0)
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 47.7K bytes
    - Viewed (0)
Back to top