Vibhakar Solanki
Vibhakar Solanki
+1 for this, i'll try to find some way to fetch them
ok its because in `HTTPLogItem` the `additional_properties_type` is set to return to only `str` https://github.com/DataDog/datadog-api-client-python/blob/master/src/datadog_api_client/v2/model/http_log_item.py#L19 This is my workaround for now ```py class HTTPLogItemWithDict(HTTPLogItem): @cached_property def additional_properties_type(self): return str, dict...
can confirm 
i'll try to fix this, i know why its happening, should be a simple fix, as for workaround i dont think there is any, we will just need to wait...
not possible, parsing of colors is done with a sscanf which if done on the whole string rather than parts of it, although supporting it should not be a big...