Hi,
I’m trying to send a KeyValuePair<string, any>[][]
to a Service but getting a bad request using v4.5.14 and the Typescript client.
Service DTO
public List<List<KeyValuePair<string, dynamic>>> KeyValueList { get; set; }
If I look at the request the KeyValueList is sent as [object Object] and I get a SerializationException.
"Errors":[{"ErrorCode":"SerializationException","FieldName":"KeyValueList","Message":"'[object Object]' is an Invalid value for 'KeyValueList'"}]
Could someone please point me in the right direction to get this working.
Thanks.