You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Optional colon-delimited user attributes in the format attribute:value,attribute:value. Only achievements accessible to a user with the provided attributes will be returned.
Copy file name to clipboardExpand all lines: src/TrophyApi/Leaderboards/Requests/LeaderboardsGetRequest.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,12 @@ public record LeaderboardsGetRequest
30
30
[JsonIgnore]
31
31
publicstring?UserId{get;set;}
32
32
33
+
/// <summary>
34
+
/// Attribute key and value to filter the rankings by, separated by a colon. This parameter is required, and only valid for leaderboards with a breakdown attribute.
Copy file name to clipboardExpand all lines: src/TrophyApi/Points/Requests/PointsSummaryRequest.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ namespace TrophyApi;
7
7
publicrecordPointsSummaryRequest
8
8
{
9
9
/// <summary>
10
-
/// Optional colon-delimited user attribute filters in the format attributeKey:value,attributeKey:value. Only users matching ALL specified attributes will be included in the points breakdown.
10
+
/// Optional colon-delimited user attribute filters in the format attribute:value,attribute:value. Only users matching ALL specified attributes will be included in the points breakdown.
0 commit comments