Files
rudder-unity-sdk/Packages/rudder.sdk/Runtime/Sources/Platform/RudderUnityClientOptions.cs
T
edmand46 6d115f158e Server-side scenario execution: new Rudder.Core.dll, realtime/planstore glue removed
- Rudder.Core.dll rebuilt from csharp-sdk effects rewrite (96,768 bytes)
- Realtime/ adapters, UnityRealtimeTransportFactory, UnityPlanStateStore,
  UnityPlanScheduler, WebGL jslib and RealtimeUrl config deleted (with .meta)
- Scenarios sample rewired to client.Effects; samples login path updated
- AGENTS.md/README/CHANGELOG/package docs + agent skill updated; realtime.md skill doc removed
2026-09-04 14:23:38 +03:00

13 lines
386 B
C#

namespace RudderSdk.Unity
{
public class RudderUnityClientOptions
{
public string BaseUrl { get; set; }
public string ProjectKey { get; set; }
public int TimeoutSeconds { get; set; } = 10;
public IUnityKeyValueStore KeyValueStore { get; set; }
public IUnityRequestExecutor RequestExecutor { get; set; }
public IUnityLoggerSink LoggerSink { get; set; }
}
}