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
RemoteObjects currently exclude fields with a None value when objects are converted to dictionaries. This can be problematic for APIs that don't treat nonexistent keys and null values the same way.
Perhaps we should provide some mechanism that allows the "default" value of a field to be an AttributeError, then include all values in the dictionary (including None) only skipping those that raise an AttributeError.
The text was updated successfully, but these errors were encountered:
RemoteObjects currently exclude fields with a None value when objects are converted to dictionaries. This can be problematic for APIs that don't treat nonexistent keys and null values the same way.
Perhaps we should provide some mechanism that allows the "default" value of a field to be an AttributeError, then include all values in the dictionary (including None) only skipping those that raise an AttributeError.
The text was updated successfully, but these errors were encountered: