Artorias
Artorias
### Describe the bug When try to add any field from the docs, such as __"description"__ or __"@microsoft.graph.conflictBehavior"__ to `DriveItemUploadableProperties` from `msgraph.generated.models.drive_item_uploadable_properties` msgraph throw this: ``` E msgraph.generated.models.o_data_errors.o_data_error.ODataError: E APIError...
I have a table with this fields: ```python first_field: EncryptedIntegerField = EncryptedIntegerField(default=0, db_default=0) another_field: EncryptedBooleanField = EncryptedBooleanField(default=False, db_default=False) ``` When I try to save instance with `first_field=0` and `another_field=False` I...