Navigation
API > API/Runtime > API/Runtime/JsonObjectGraph
| Name | EJsonStringifyFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/JsonObjectGraph/Public/JsonObjectGraph/Stringify.h |
| Include Path | #include "JsonObjectGraph/Stringify.h" |
Syntax
enum EJsonStringifyFlags
{
Default = 0,
FilterEditorOnlyData = 1 << 0,
DisableDeltaEncoding = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| Default | The default representation of an object attempts to be complete and stable across time |
| FilterEditorOnlyData | Filters editor only data such that it is not written to the Json |
| DisableDeltaEncoding | Disables delta encoding such that all properties are encoded in the Json, rather than only changes from the objects' archetypes |