2026-03-23 07:51:32 -05:00
|
|
|
|
namespace Jibo.Runtime.Abstractions;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class ResponsePlan
|
|
|
|
|
|
{
|
|
|
|
|
|
public string PlanId { get; init; } = Guid.NewGuid().ToString("N");
|
|
|
|
|
|
public string SessionId { get; init; } = string.Empty;
|
|
|
|
|
|
public ResponseStatus Status { get; init; } = ResponseStatus.Succeeded;
|
|
|
|
|
|
|
|
|
|
|
|
public string? IntentName { get; init; }
|
|
|
|
|
|
public string? Topic { get; init; }
|
2026-04-11 07:12:57 -05:00
|
|
|
|
public string? DeviceId { get; init; }
|
|
|
|
|
|
public string? TargetHost { get; init; }
|
2026-03-23 07:51:32 -05:00
|
|
|
|
public IList<PlanAction> Actions { get; init; } = new List<PlanAction>();
|
|
|
|
|
|
|
|
|
|
|
|
public FollowUpPolicy FollowUp { get; init; } = FollowUpPolicy.None;
|
|
|
|
|
|
public IDictionary<string, object?> ContextUpdates { get; init; } = new Dictionary<string, object?>();
|
|
|
|
|
|
|
|
|
|
|
|
public string? DebugRoute { get; init; }
|
|
|
|
|
|
public IDictionary<string, object?> Diagnostics { get; init; } = new Dictionary<string, object?>();
|
2026-04-11 07:12:57 -05:00
|
|
|
|
public IDictionary<string, object?> ProtocolMetadata { get; init; } = new Dictionary<string, object?>();
|
2026-05-17 08:08:11 -05:00
|
|
|
|
}
|