Files
rudder-csharp-sdk/Leaderboards/GetRankingResponse.cs
T

16 lines
330 B
C#
Raw Permalink Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.Leaderboards;
public class GetRankingResponse
{
[JsonProperty("entries")]
2026-08-29 11:33:01 +03:00
public List<RankEntry>? Entries { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("total")]
2026-08-29 11:33:01 +03:00
public long? Total { get; set; }
2026-08-12 14:04:55 +03:00
}