Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,6 @@ public enum EventNameEnum
[fsProperty("context")]
public object Context { get; set; }
/// <summary>
/// Whether to consider the dialog node during runtime evaluation. Set to `true` to ignore the
/// dialog node.
/// </summary>
[fsProperty("disabled")]
public bool Disabled { get; set; }
/// <summary>
/// The metadata for the dialog node.
/// </summary>
/// <value>The metadata for the dialog node.</value>
Expand Down
5 changes: 5 additions & 0 deletions Scripts/Services/Assistant/v1/Models/DialogNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,11 @@ public enum EventNameEnum
[fsProperty("title")]
public string Title { get; set; }
/// <summary>
/// For internal use only.
/// </summary>
[fsProperty("disabled")]
public bool Disabled { get; set; }
/// <summary>
/// The location in the dialog context where output is stored.
/// </summary>
/// <value>The location in the dialog context where output is stored.</value>
Expand Down