Files
rudder-csharp-sdk/BattlePass/GetBattlePassProgressResponse.cs
T

22 lines
490 B
C#
Raw 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.BattlePass;
public class GetBattlePassProgressResponse
{
[JsonProperty("claimedTiers")]
2026-08-29 11:33:01 +03:00
public List<ClaimedTier>? ClaimedTiers { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("level")]
2026-08-29 11:33:01 +03:00
public int? Level { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("premiumOwned")]
2026-08-29 11:33:01 +03:00
public bool? PremiumOwned { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("xp")]
2026-08-29 11:33:01 +03:00
public long? Xp { get; set; }
2026-08-12 14:04:55 +03:00
}