diff --git a/Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs b/Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs index b2490f1ff..fbd5c9ded 100644 --- a/Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs +++ b/Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs @@ -176,12 +176,6 @@ public enum EventNameEnum [fsProperty("context")] public object Context { get; set; } /// - /// Whether to consider the dialog node during runtime evaluation. Set to `true` to ignore the - /// dialog node. - /// - [fsProperty("disabled")] - public bool Disabled { get; set; } - /// /// The metadata for the dialog node. /// /// The metadata for the dialog node. diff --git a/Scripts/Services/Assistant/v1/Models/DialogNode.cs b/Scripts/Services/Assistant/v1/Models/DialogNode.cs index 98e5ba111..351bbac71 100644 --- a/Scripts/Services/Assistant/v1/Models/DialogNode.cs +++ b/Scripts/Services/Assistant/v1/Models/DialogNode.cs @@ -213,6 +213,11 @@ public enum EventNameEnum [fsProperty("title")] public string Title { get; set; } /// + /// For internal use only. + /// + [fsProperty("disabled")] + public bool Disabled { get; set; } + /// /// The location in the dialog context where output is stored. /// /// The location in the dialog context where output is stored.