@@ -196,19 +196,17 @@ public class DigressOutSlotsValue
196
196
/// <summary>
197
197
/// The dialog node ID. This string must conform to the following restrictions:
198
198
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
199
- /// - It must be no longer than 1024 characters.
200
199
/// </summary>
201
200
[ JsonProperty ( "dialog_node" , NullValueHandling = NullValueHandling . Ignore ) ]
202
201
public string _DialogNode { get ; set ; }
203
202
/// <summary>
204
- /// The description of the dialog node. This string cannot contain carriage return, newline, or tab characters,
205
- /// and it must be no longer than 128 characters.
203
+ /// The description of the dialog node. This string cannot contain carriage return, newline, or tab characters.
206
204
/// </summary>
207
205
[ JsonProperty ( "description" , NullValueHandling = NullValueHandling . Ignore ) ]
208
206
public string Description { get ; set ; }
209
207
/// <summary>
210
208
/// The condition that will trigger the dialog node. This string cannot contain carriage return, newline, or tab
211
- /// characters, and it must be no longer than 2048 characters .
209
+ /// characters.
212
210
/// </summary>
213
211
[ JsonProperty ( "conditions" , NullValueHandling = NullValueHandling . Ignore ) ]
214
212
public string Conditions { get ; set ; }
@@ -225,7 +223,7 @@ public class DigressOutSlotsValue
225
223
public string PreviousSibling { get ; set ; }
226
224
/// <summary>
227
225
/// The output of the dialog node. For more information about how to specify dialog node output, see the
228
- /// [documentation](https://cloud.ibm.com/docs/services/assistant/ dialog-overview.html #dialog-overview-responses).
226
+ /// [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant- dialog-overview#dialog-overview-responses).
229
227
/// </summary>
230
228
[ JsonProperty ( "output" , NullValueHandling = NullValueHandling . Ignore ) ]
231
229
public JObject Output { get ; set ; }
@@ -247,7 +245,6 @@ public class DigressOutSlotsValue
247
245
/// <summary>
248
246
/// The alias used to identify the dialog node. This string must conform to the following restrictions:
249
247
/// - It can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
250
- /// - It must be no longer than 64 characters.
251
248
/// </summary>
252
249
[ JsonProperty ( "title" , NullValueHandling = NullValueHandling . Ignore ) ]
253
250
public string Title { get ; set ; }
@@ -262,8 +259,7 @@ public class DigressOutSlotsValue
262
259
[ JsonProperty ( "actions" , NullValueHandling = NullValueHandling . Ignore ) ]
263
260
public List < DialogNodeAction > Actions { get ; set ; }
264
261
/// <summary>
265
- /// A label that can be displayed externally to describe the purpose of the node to users. This string must be
266
- /// no longer than 512 characters.
262
+ /// A label that can be displayed externally to describe the purpose of the node to users.
267
263
/// </summary>
268
264
[ JsonProperty ( "user_label" , NullValueHandling = NullValueHandling . Ignore ) ]
269
265
public string UserLabel { get ; set ; }
0 commit comments