The SDK is not able to return a list while calling get_object_*.
Other SDKs can return both list and dict with the get_object functions.
The AbstractProvider request to implement resolve_object_details and return a FlagEvaluationDetails[dict] object.
If we want to support both types we should return a FlagEvaluationDetails[Union[dict,list]] object.
The SDK is not able to return a
listwhile callingget_object_*.Other SDKs can return both
listanddictwith theget_objectfunctions.The
AbstractProviderrequest to implementresolve_object_detailsand return aFlagEvaluationDetails[dict]object.If we want to support both types we should return a
FlagEvaluationDetails[Union[dict,list]]object.