7 ways to implement DTOs in Python and what to keep in mind
Data Transfer Objects are simply data structures typically used to pass data between application layers or between services. (…) Well defined DTOs can give us more benefits, such as making it easier to perform serialization or validation. Here are a few examples of using different features of Python standard library and 3rd party packages to create better DTOs.
source