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
Is your feature request related to a problem? Please describe.
The problem is that we receiving the type of model from the stream as this:
When we tried to use FlatFeed it's says that there was a problem with parsing data like this:
So then we changed all FlatFeed using to the GenericFeed(want to say that documentation also should be improved for this), so after we changed the implementation, we started to receive the parsing data error of field 'foreign_id'
Such as I've understood and you can see from the response structure, we have a root called foreign_id and which also has a field inside with the same name, foreign_id
so when the library tries to get this data from json response and extract the main keys from json, you can follow here:
it's said that foreign_id is not a type of String.
Describe the solution you'd like
From our side, we tried to just replace the data to another key and everything start to worked:
Is your feature request related to a problem? Please describe.

The problem is that we receiving the type of model from the stream as this:
When we tried to use

FlatFeed
it's says that there was a problem with parsing data like this:So then we changed all

FlatFeed
using to theGenericFeed
(want to say that documentation also should be improved for this), so after we changed the implementation, we started to receive the parsing data error of field 'foreign_id'Such as I've understood and you can see from the response structure, we have a root called

foreign_id
and which also has a field inside with the same name,foreign_id
so when the library tries to get this data from json response and extract the main keys from json, you can follow here:

it's said that
foreign_id
is not a type ofString
.Describe the solution you'd like

From our side, we tried to just replace the data to another key and everything start to worked:
JSON Response from stream
The text was updated successfully, but these errors were encountered: