Navigation
API > API/Plugins > API/Plugins/OnlineServicesInterface
Flags to indicate the data types supported by a service attribute.
| Name | UE::Online::ESchemaServiceAttributeSupportedTypeFlags |
| Type | enum |
| Header File | /Engine/Plugins/Online/OnlineServices/Source/OnlineServicesInterface/Public/Online/SchemaTypes.h |
| Include Path | #include "Online/SchemaTypes.h" |
Syntax
namespace UE
{
namespace Online
{
enum ESchemaServiceAttributeSupportedTypeFlags
{
None = 0,
Bool = 1 << 0,
Int64 = 1 << 1,
Double = 1 << 2,
String = 1 << 3,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Bool | Boolean values. |
| Int64 | Signed 64 bit integers. |
| Double | Double precision floating point. |
| String | Variable length string data. |