// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Auth
{
///
/// Flags used to describe how the account linking operation is to be performed.
///
///
[System.Flags]
public enum LinkAccountFlags : int
{
///
/// Default flag used for a standard account linking operation.
///
/// This flag is set when using a continuance token received from a previous call to the API,
/// when the local user has not yet been successfully logged in to an Epic Account yet.
///
NoFlags = 0x0,
///
/// Specified when the describes a Nintendo NSA ID account type.
///
/// This flag is used only with, and must be set, when the continuance token was received from a previous call
/// to the API using the login type.
///
NintendoNsaId = 0x1
}
}