Files
rudder-csharp-sdk/Scenarios/PendingEffect.cs
T

29 lines
661 B
C#
Raw Normal View History

// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
namespace RudderSdk.Core.Models.Scenarios;
public class PendingEffect
{
[JsonProperty("data")]
public JToken Data { get; set; } = null!;
[JsonProperty("nodeId")]
public string NodeId { get; set; } = null!;
[JsonProperty("runId")]
public string RunId { get; set; } = null!;
[JsonProperty("scenarioId")]
public string ScenarioId { get; set; } = null!;
[JsonProperty("type")]
public string Type { get; set; } = null!;
[JsonProperty("waitDeadline")]
public DateTimeOffset? WaitDeadline { get; set; }
}