If no data have been saved yet, those methods will yield undefined or null. There is no type enforcement on the SDK side. For instance, if you introduce a new field, you should apply some migration logic at load time.
p00lsGamesSdk.GetUserData<UserData>(v =>
{
// do something with the data
gameState.Start();
});
await sdk.data.getUserData();
Parts
Sometimes, saving every time a big chunk of data can be wasteful. For instance, things like user preferences (sound on/off, etc), don't change so much, and including them each time would just yield heavier network calls.
For that purpose, you can use parts. Parts work pretty much like user data, only you can specify a key to store them into.