Creating UserData Class
After requesting user data from Xerial services, the JSON response needs to be processed to create an instance of the UserData class.
using System.Collections.Generic;
using Xerial;
public class DeserializeUserData
{
public UserData ProcessJsonResponse(string jsonResponse)
{
// Method implementation
}
}Deserializing Account Data
Explanation
Example
Deserializing Wallet Data
Explanation
Example
Last updated