This is a Json tool plugin that aims to convert Json strings into Unreal Engine's UStruct and supports both Blueprint and C++.
Struct To Json Object String Used to convert UStruct to Json object string, which can be a blueprint structure or a UStruct defined in C++ (needs to be marked by BlueprintType macro).
Struct Array To Json Object String Used to convert a UStruct array to a Json object string, which can be a blueprint structure or a C++ defined UStruct (needs to be marked by the BlueprintType macro).
Json String To Struct Used to convert a Json object string to a UStruct, which can be a blueprint structure or a C++ defined UStruct (needs to be marked by the BlueprintType macro).
Json String To Struct Array Used to convert a Json object string into a UStruct array, which can be a blueprint structure or a C++ defined UStruct (needs to be marked by the BlueprintType macro).
The structure used in the test:
UJsonToolLibrary::StructToJsonObjectString Used to convert UStruct to Json object string, UStruct defined in C++ (needs to be marked by BlueprintType macro).
UJsonToolLibrary::StructArrayToJsonObjectString Used to convert UStruct array to Json object string, UStruct defined in C++ (needs to be marked by BlueprintType macro).
UJsonToolLibrary::JsonObjectStringToStruct Used to convert Json object string to UStruct, UStruct defined in C++ (needs to be marked by BlueprintType macro).
UJsonToolLibrary::JsonArrayStringToUStructArray Used to convert a Json object string into a UStruct array, UStruct defined in C++ (needs to be marked by the BlueprintType macro).