You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Additional Properties](#additional-properties-handling)|`additional_properties` parameter removed | Use direct dictionary syntax: `model["key"] = value`|
18
18
|[String Representation](#string-representation-matches-rest-api)| Model key output changed from `snake_case` to `camelCase`| Update any code parsing model strings to expect `camelCase`|
19
-
|[Serialization/Deserialization](#serialization-and-deserialization-methods-removed)|`serialization` and `deserialization` methods removed | Use dictionary access for serialization, constructor for deserialization |
19
+
|[Serialization/Deserialization](#serialization-and-deserialization-methods-removed)|`serialize` and `deserialize` methods removed | Use dictionary access for serialization, constructor for deserialization |
20
20
21
21
## Detailed Breaking Changes
22
22
@@ -26,14 +26,14 @@ When migrating to the hybrid model design, expect these breaking changes:
26
26
27
27
**What will break**:
28
28
29
-
- Code that relies on parameter `keep_readonly` to `.on_dict()`
29
+
- Code that relies on parameter `keep_readonly` to `.as_dict()`
30
30
- Code that expects `snake_case` keys in dictionary output
0 commit comments