ea20ea6d51
LeaderboardSession.ClaimAsync sends onClaim. Generated DTOs live under Models/ with nullable wire fields. Remove incomplete duplicate type files.
19 lines
402 B
C#
19 lines
402 B
C#
// Code generated by apigen. DO NOT EDIT.
|
|
using Newtonsoft.Json;
|
|
using RudderSdk.Core.Models;
|
|
|
|
namespace RudderSdk.Core.Models.BattlePass;
|
|
|
|
public class PurchaseBattlePassPremiumResponse
|
|
{
|
|
[JsonProperty("error")]
|
|
public string? Error { get; set; }
|
|
|
|
[JsonProperty("plan")]
|
|
public ExecutionPlan? Plan { get; set; }
|
|
|
|
[JsonProperty("success")]
|
|
public bool? Success { get; set; }
|
|
|
|
}
|