6c590ca520
- client.Effects: typed effects + completion methods posting scenario callbacks - client.Scenario reduced to TriggerAsync - pending polling via Update() pump: 30s heartbeat + wait-deadline checks - local engine, plan persistence (IPlanStateStore) and resume removed - RealtimeService and realtime transports removed (relay never deployed) - dead IPlanScheduler leftover removed - models regenerated from openapi (ExecutionPlan/BoundaryNode gone, PendingEffect added)
15 lines
300 B
C#
15 lines
300 B
C#
// Code generated by apigen. DO NOT EDIT.
|
|
using Newtonsoft.Json;
|
|
|
|
namespace RudderSdk.Core.Models.BattlePass;
|
|
|
|
public class PurchaseBattlePassPremiumResponse
|
|
{
|
|
[JsonProperty("error")]
|
|
public string? Error { get; set; }
|
|
|
|
[JsonProperty("success")]
|
|
public bool? Success { get; set; }
|
|
|
|
}
|