[Python] Handle nullable dictionary values (#17605)

* fix nullable elements in maps

* update examples

* exclude values typed as Any
This commit is contained in:
Huan-Cheng Chang
2024-01-13 11:45:22 +01:00
committed by GitHub
parent 406bc28a3d
commit 8e9a17fe02
5 changed files with 20 additions and 16 deletions

View File

@@ -16,8 +16,8 @@ Name | Type | Description | Notes
**array_and_items_nullable_prop** | **List[Optional[object]]** | | [optional]
**array_items_nullable** | **List[Optional[object]]** | | [optional]
**object_nullable_prop** | **Dict[str, object]** | | [optional]
**object_and_items_nullable_prop** | **Dict[str, object]** | | [optional]
**object_items_nullable** | **Dict[str, object]** | | [optional]
**object_and_items_nullable_prop** | **Dict[str, Optional[object]]** | | [optional]
**object_items_nullable** | **Dict[str, Optional[object]]** | | [optional]
## Example