osu/osu.Game/Online/API/Requests/GetUserRecentActivitiesRequest.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
2018-02-25 13:48:39 +00:00
using System.Collections.Generic;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 09:19:50 +00:00
2018-02-25 13:48:39 +00:00
namespace osu.Game.Online.API.Requests
{
public class GetUserRecentActivitiesRequest : PaginatedAPIRequest<List<APIRecentActivity>>
2018-02-25 13:48:39 +00:00
{
private readonly long userId;
2018-04-13 09:19:50 +00:00
2019-07-19 07:02:33 +00:00
public GetUserRecentActivitiesRequest(long userId, int page = 0, int itemsPerPage = 5)
: base(page, itemsPerPage)
{
this.userId = userId;
}
2018-04-13 09:19:50 +00:00
protected override string Target => $"users/{userId}/recent_activity";
2018-02-25 13:48:39 +00:00
}
2018-04-13 09:19:50 +00:00
2018-02-25 13:48:39 +00:00
public enum RecentActivityType
{
Achievement,
// ReSharper disable once IdentifierTypo
2018-02-25 13:48:39 +00:00
BeatmapPlaycount,
BeatmapsetApprove,
BeatmapsetDelete,
BeatmapsetRevive,
BeatmapsetUpdate,
BeatmapsetUpload,
2018-02-25 13:48:39 +00:00
Medal,
Rank,
RankLost,
UserSupportAgain,
UserSupportFirst,
UserSupportGift,
UsernameChange,
}
2018-04-13 09:19:50 +00:00
public enum BeatmapApproval
{
Ranked,
Approved,
Qualified,
2019-11-28 14:59:57 +00:00
Loved
}
2018-02-25 13:48:39 +00:00
}