// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Leaderboards
{
///
/// An enumeration of the different leaderboard aggregation types.
///
public enum LeaderboardAggregation : int
{
///
/// Minimum
///
Min = 0,
///
/// Maximum
///
Max = 1,
///
/// Sum
///
Sum = 2,
///
/// Latest
///
Latest = 3
}
}