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
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 text was updated successfully, but these errors were encountered:
The SDK is not able to return a
list
while callingget_object_*
.Other SDKs can return both
list
anddict
with theget_object
functions.The
AbstractProvider
request to implementresolve_object_details
and return aFlagEvaluationDetails[dict]
object.If we want to support both types we should return a
FlagEvaluationDetails[Union[dict,list]]
object.The text was updated successfully, but these errors were encountered: