File tree Expand file tree Collapse file tree
google/cloud/dialogflow/cx/v3beta1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -270,12 +270,29 @@ message TestConfig {
270270 // Session parameters to be compared when calculating differences.
271271 repeated string tracking_parameters = 1 ;
272272
273- // Flow name. If not set, default start flow is assumed .
273+ // Flow name to start the test case with .
274274 // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
275275 // ID>/flows/<Flow ID>`.
276+ //
277+ // Only one of `flow` and `page` should be set to indicate the starting point
278+ // of the test case. If both are set, `page` takes precedence over `flow`. If
279+ // neither is set, the test case will start with start page on the default
280+ // start flow.
276281 string flow = 2 [(google.api.resource_reference ) = {
277282 type : "dialogflow.googleapis.com/Flow"
278283 }];
284+
285+ // The [page][google.cloud.dialogflow.cx.v3beta1.Page] to start the test case with.
286+ // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
287+ // ID>/flows/<Flow ID>/pages/<Page ID>`.
288+ //
289+ // Only one of `flow` and `page` should be set to indicate the starting point
290+ // of the test case. If both are set, `page` takes precedence over `flow`. If
291+ // neither is set, the test case will start with start page on the default
292+ // start flow.
293+ string page = 3 [(google.api.resource_reference ) = {
294+ type : "dialogflow.googleapis.com/Page"
295+ }];
279296}
280297
281298// One interaction between a human and virtual agent. The human provides some
You can’t perform that action at this time.
0 commit comments