Navigation
API > API/Plugins > API/Plugins/OnlineSubsystem
| |
|
| Name |
EOnlineKeyValuePairDataType::Type |
| Type |
enum |
| Header File |
/Engine/Plugins/Online/OnlineSubsystem/Source/Public/OnlineKeyValuePair.h |
| Include Path |
#include "OnlineKeyValuePair.h" |
Syntax
namespace EOnlineKeyValuePairDataType
{
enum Type
{
Empty,
Int32,
UInt32,
Int64,
UInt64,
Double,
String,
Float,
Blob,
Bool,
Json,
MAX,
}
}
Values
| Name |
Remarks |
| Empty |
Means the data in the OnlineData value fields should be ignored |
| Int32 |
32 bit integer |
| UInt32 |
32 bit unsigned integer |
| Int64 |
64 bit integer |
| UInt64 |
64 bit unsigned integer |
| Double |
Double (8 byte) |
| String |
Unicode string |
| Float |
Float (4 byte) |
| Blob |
Binary data |
| Bool |
Bool data (1 byte) |
| Json |
Serialized json text |
| MAX |
|