File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 2
2
## [ 6.3.0] - 2023-06-05
3
3
- Fixed the deprecated ` ignore ` field. Added
4
4
```
5
- includeFromJson: true
6
- includeToJson: true,
5
+ includeFromJson: false
6
+ includeToJson: false
7
7
```
8
8
9
9
## [ 6.2.1] - 2023-03-07
Original file line number Diff line number Diff line change @@ -323,7 +323,13 @@ UserModel:
323
323
include_if_null: false #If this field is null, this field will not be added to your json object (used for PATCH models)
324
324
type: String
325
325
ignoreField:
326
- ignore: false #this field will not be final, and not be used in the json parsing
326
+ ignore: false #This field is ignored in the to & from json methods
327
+ type: String
328
+ ignoreFieldOnlyInFrom:
329
+ includeFromJson: false #This field is ignored in the from json method
330
+ type: String
331
+ ignoreFieldOnlyInTo:
332
+ includeToJson: false #This field is ignored in the to json method
327
333
type: String
328
334
mutableField:
329
335
non_final: true #Field will not be marked final
You can’t perform that action at this time.
0 commit comments