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

19 lines
402 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 RudderSdk.Core.Models;
namespace RudderSdk.Core.Models.BattlePass;
public class PurchaseBattlePassPremiumResponse
{
[JsonProperty("error")]
2026-08-29 11:33:01 +03:00
public string? Error { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("plan")]
2026-08-29 11:33:01 +03:00
public ExecutionPlan? Plan { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("success")]
2026-08-29 11:33:01 +03:00
public bool? Success { get; set; }
2026-08-12 14:04:55 +03:00
}