Skip to content

Commit 830daab

Browse files
committed
feat(Assistant V1): Added missing disabled field to CreateDialogNode
1 parent b237d02 commit 830daab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,12 @@ 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>
295301
/// The metadata for the dialog node.
296302
/// </summary>
297303
[JsonProperty("metadata", NullValueHandling = NullValueHandling.Ignore)]

0 commit comments

Comments
 (0)