You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.2 KiB

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Auth
{
/// <summary>
/// Flags that describe user permissions
/// </summary>
[System.Flags]
public enum AuthScopeFlags : int
{
NoFlags = 0x0,
/// <summary>
/// Permissions to see your account ID, display name, language and country
/// </summary>
BasicProfile = 0x1,
/// <summary>
/// Permissions to see a list of your friends who use this application
/// </summary>
FriendsList = 0x2,
/// <summary>
/// Permissions to set your online presence and see presence of your friends
/// </summary>
Presence = 0x4,
/// <summary>
/// Permissions to manage the Epic friends list. This scope is restricted to Epic first party products, and attempting to use it will result in authentication failures.
/// </summary>
FriendsManagement = 0x8,
/// <summary>
/// Permissions to see email in the response when fetching information for a user. This scope is restricted to Epic first party products, and attempting to use it will result in authentication failures.
/// </summary>
Email = 0x10
}
}