Files
rudder-csharp-sdk/Models/ExecutionPlan.cs
T

38 lines
888 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 Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models;
public class ExecutionPlan
{
[JsonProperty("boundaryNodes")]
2026-08-29 11:33:01 +03:00
public List<BoundaryNode>? BoundaryNodes { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("context")]
2026-08-29 11:33:01 +03:00
public JToken? Context { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("edges")]
2026-08-29 11:33:01 +03:00
public List<PlanEdge>? Edges { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("nodes")]
2026-08-29 11:33:01 +03:00
public List<ExecutionPlanNode>? Nodes { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("planId")]
2026-08-29 11:33:01 +03:00
public string? PlanId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("runId")]
2026-08-29 11:33:01 +03:00
public string? RunId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("scenarioId")]
2026-08-29 11:33:01 +03:00
public string? ScenarioId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("startNodeId")]
2026-08-29 11:33:01 +03:00
public string? StartNodeId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("userId")]
2026-08-29 11:33:01 +03:00
public string? UserId { get; set; }
2026-08-12 14:04:55 +03:00
}