// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Auth { /// /// Flags that describe user permissions /// [System.Flags] public enum AuthScopeFlags : int { NoFlags = 0x0, /// /// Permissions to see your account ID, display name, and language /// BasicProfile = 0x1, /// /// Permissions to see a list of your friends who use this application /// FriendsList = 0x2, /// /// Permissions to set your online presence and see presence of your friends /// Presence = 0x4, /// /// 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. /// FriendsManagement = 0x8, /// /// 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. /// Email = 0x10, /// /// Permissions to see your country /// Country = 0x20 } }