Skip to content

Commit 2dc7022

Browse files
authored
Merge pull request #323 from watson-developer-cloud/5969-move-disabled-to-dialognode
Moved disabled property from CreateDialogNode to DialogNode
2 parents 7bfcf3d + b7bb582 commit 2dc7022

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/CreateDialogNode.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -292,12 +292,6 @@ public enum DigressOutSlotsEnum
292292
[JsonProperty("context", NullValueHandling = NullValueHandling.Ignore)]
293293
public object Context { get; set; }
294294
/// <summary>
295-
/// Whether to consider the dialog node during runtime evaluation. Set to `true` to ignore the
296-
/// dialog node.
297-
/// </summary>
298-
[JsonProperty("disabled", NullValueHandling = NullValueHandling.Ignore)]
299-
public bool Disabled { get; set; }
300-
/// <summary>
301295
/// The metadata for the dialog node.
302296
/// </summary>
303297
[JsonProperty("metadata", NullValueHandling = NullValueHandling.Ignore)]

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/DialogNode.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,11 @@ public enum DigressOutSlotsEnum
320320
[JsonProperty("title", NullValueHandling = NullValueHandling.Ignore)]
321321
public string Title { get; set; }
322322
/// <summary>
323+
/// For internal use only.
324+
/// </summary>
325+
[JsonProperty("disabled", NullValueHandling = NullValueHandling.Ignore)]
326+
public bool Disabled { get; set; }
327+
/// <summary>
323328
/// The location in the dialog context where output is stored.
324329
/// </summary>
325330
[JsonProperty("variable", NullValueHandling = NullValueHandling.Ignore)]

0 commit comments

Comments
 (0)