Navigation
API > API/Runtime > API/Runtime/JsonUtilities
| |
|
| Name |
EJsonObjectConvertResult |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/JsonUtilities/Public/JsonObjectStructInterface.h |
| Include Path |
#include "JsonObjectStructInterface.h" |
Syntax
enum EJsonObjectConvertResult
{
UseDefaultConverter,
FailAndAbort,
IgnoreAndContinue,
Converted,
}
Values
| Name |
Remarks |
| UseDefaultConverter |
No conversion was performed. Fallback to try the default JsonObjectConverter instead. |
| FailAndAbort |
No conversion is possible. Abandon further efforts. Ask caller to fail. |
| IgnoreAndContinue |
No conversion was performed. |
| Converted |
Conversion of the struct was performed. |