Navigation
API > API/Plugins > API/Plugins/OnlineServicesInterface
Flags to indicate the available support for a service attribute.
| Name | UE::Online::ESchemaServiceAttributeFlags |
| 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 ESchemaServiceAttributeFlags
{
None = 0,
Searchable = 1 << 0,
Public = 1 << 1,
Private = 1 << 2,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | No special properties needed. |
| Searchable | Attribute is available for search operations. |
| Public | Attribute is publicly visible. |
| Private | Attribute is visible to members only. |