2026-08-12 14:04:55 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models;
|
|
|
|
|
|
|
|
|
|
public class ExecutionPlanNode
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("data")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public JToken? Data { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Id { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("type")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Type { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
}
|