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

24 lines
492 B
C#
Raw Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models;
public class PlanEdge
{
[JsonProperty("id")]
2026-08-29 11:33:01 +03:00
public string? Id { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("source")]
2026-08-29 11:33:01 +03:00
public string? Source { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("sourceHandle")]
2026-08-29 11:33:01 +03:00
public string? SourceHandle { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("target")]
2026-08-29 11:33:01 +03:00
public string? Target { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("targetHandle")]
2026-08-29 11:33:01 +03:00
public string? TargetHandle { get; set; }
2026-08-12 14:04:55 +03:00
}