Hi,in my code I have a SharedCollection called 'playerDataCollection'. I
want to add a custom Object called PlayerData which I use for storing
Player-info like the color, name, cards etc... to it, something like
this.playerDataCollection.addItem({userId:connectSession.userManager.myUserID,
playerData:playerData});If I now see in the ChangeHandler of the
playersDataCollection, I can see that its updated, but the playerData is
added as a plain object, causing me to loose all the data I could
other...