Navigation
API > API/Runtime > API/Runtime/JsonUtilities > API/Runtime/JsonUtilities/FJsonObjectConverter
References
| Module | JsonUtilities |
| Header | /Engine/Source/Runtime/JsonUtilities/Public/JsonObjectConverter.h |
| Include | #include "JsonObjectConverter.h" |
template<typename OutStructType>
static bool JsonArrayStringToUStruct
&40;
const FString & JsonString,
TArray< OutStructType > &42; OutStructArray,
int64 CheckFlags,
int64 SkipFlags,
const bool bStrictMode
&41;
Remarks
Converts from a json string containing an array to an array of UStructs False if any properties matched but failed to deserialize.
Parameters
| Name | Description |
|---|---|
| JsonString | String containing JSON formatted data. |
| OutStructArray | The UStruct array to copy in to |
| CheckFlags | Only convert properties that match at least one of these flags. If 0 check all properties. |
| SkipFlags | Skip properties that match any of these flags. |
| bStrictMode | Whether to strictly check the json attributes |