Skip to content

Commit

Permalink
feat(Assistant V1): Added missing disabled field to CreateDialogNode
Browse files Browse the repository at this point in the history
  • Loading branch information
mediumTaj committed Dec 20, 2018
1 parent b237d02 commit 830daab
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,12 @@ public enum DigressOutSlotsEnum
[JsonProperty("context", NullValueHandling = NullValueHandling.Ignore)]
public object Context { get; set; }
/// <summary>
/// Whether to consider the dialog node during runtime evaluation. Set to `true` to ignore the
/// dialog node.
/// </summary>
[JsonProperty("disabled", NullValueHandling = NullValueHandling.Ignore)]
public bool Disabled { get; set; }
/// <summary>
/// The metadata for the dialog node.
/// </summary>
[JsonProperty("metadata", NullValueHandling = NullValueHandling.Ignore)]
Expand Down

0 comments on commit 830daab

Please sign in to comment.