Skip to main content
Version: 6.0.0

GetFlattenJson

public BACKND.LitJson.JsonData GetFlattenJson();

Description

When the request is successful, the returnValue returned is converted to a JsonData object
and all data types that exist in the object are removed and returned.

Example

var bro = Backnd.Player.GetMyPlayerInfo();
if(bro.IsSuccess() == false) {
return;
}

var json = bro.GetFlattenJson();

Return casess

When the returnValue exists
Unmarshalled JsonData object is returned.